Reputation: 9
Is there any scripting language available for creating Silent Installation (without giving input and clicking next, agree and finish)...? I want to do unattended installation of NewsGator.exe application in windows server, which scripting would be best..? Thanks in Advance for your reply.
Upvotes: 0
Views: 16271
Reputation: 77
try autoit, here is an example of how to automate a WinZip install :
http://www.autoitscript.com/autoit3/docs/tutorials/winzip/winzip.htm
I have used it to automate several installs in the company i work with, its pretty straight forward.
Upvotes: 0
Reputation: 21855
All the MSI installers can support silent installations supplying the input parameters thru the command line in the form of:
installer.exe /v/qn"PARAMETER=VALUE PARAMETER=VALUE"
Upvotes: 0
Reputation:
NSIS provides the very simple /S
flag for running installers.
It's also extremely easy to create a dead simple installer.
Upvotes: 1