Skype full setup and silent installation.
You can download the full skype setup from this url
http://www.skype.com/go/getskype-full
A part of (one of my) a nsis script is following with extra informations in the comments:
; http://www.skype.com/go/getskype-full
; ALLUSERS=1 - install for all the windows users
; /NOIE - No Internet Explorer plugin
; /NOGOOGLE - No Google toolbar
; /verysilent - No installation interface
; /NORESTART - No restart
; /SP-
; /NOCANCEL cannot interrupt
; /SUPPRESSMSGBOXES - avoid message boxes
; /NOLAUNCH' - doesn't start skype after installation
ExecWait "'$EXEDIR\SOFTWARE\x86\SkypeSetupFull.exe ALLUSERS=1 /NOIE /NOGOOGLE /VERYSILENT /SP- /NOCANCEL /NORESTART /SUPPRESSMSGBOXES /NOLAUNCH'"
;removing run at windows startup
RegDelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "Skype");
You can download the full skype setup from this url
http://www.skype.com/go/getskype-full
A part of (one of my) a nsis script is following with extra informations in the comments:
; http://www.skype.com/go/getskype-full
; ALLUSERS=1 - install for all the windows users
; /NOIE - No Internet Explorer plugin
; /NOGOOGLE - No Google toolbar
; /verysilent - No installation interface
; /NORESTART - No restart
; /SP-
; /NOCANCEL cannot interrupt
; /SUPPRESSMSGBOXES - avoid message boxes
; /NOLAUNCH' - doesn't start skype after installation
ExecWait "'$EXEDIR\SOFTWARE\x86\SkypeSetupFull.exe ALLUSERS=1 /NOIE /NOGOOGLE /VERYSILENT /SP- /NOCANCEL /NORESTART /SUPPRESSMSGBOXES /NOLAUNCH'"
;removing run at windows startup
RegDelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "Skype");
Comments
Post a Comment