batch file - Installing software using command line silent mode -


i creating batch file run on azure worker start task install gpg software on windows 8 in silent mode or quiet mode -don't want see ui dialogs

how pass installation folder or other parameters in command line

i have tried using below line shows windows installer popup

msiexec  "c:\gpg4win-2.2.4.exe" /qn 

and tried

"c:\gpg4win-2.2.4.exe" 

i getting windows installer ui -gpg win setup ui

please me how can run installation in quite mode passing required parameters

as documentation states there explicit switches , configuration files installation scenario. simple example be

gpg4win-2.2.4.exe /s /d=d:\temp\gpg4win 

specifying /s silent , /d destination path might relevant scenario.

if need more detailed setting documentation shows how prepare configuration file fine grained settings.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -