kodeesh
kodeesh

Reputation: 9

Unattended Installation of an EXE (Without user interaction)

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

Answers (3)

Rayvyn
Rayvyn

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

Ignacio Soler Garcia
Ignacio Soler Garcia

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

user1661538
user1661538

Reputation:

NSIS provides the very simple /S flag for running installers. It's also extremely easy to create a dead simple installer.

Upvotes: 1

Related Questions