Agent 5.3.47657 silent install?
I am trying to package the new agent to add to our scripted installs.
Under kbox\client\agent_provisioning\windows_platform I have a file called "ampagent_5.3.47657-x86.msi" and that is the one I am working with. With the previous agent, my silent install batch looked like this:
With this msi, I am not sure how to impart those same options silently. Please help?
Under kbox\client\agent_provisioning\windows_platform I have a file called "ampagent_5.3.47657-x86.msi" and that is the one I am working with. With the previous agent, my silent install batch looked like this:
net stop "Program Compatibility Assistant Service"
KInstallerSetup.exe -server=kbox.domain.com -ssl_enabled=0 -amp_ssl=0 -display_mode=silent -clone_prep=true
With this msi, I am not sure how to impart those same options silently. Please help?
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
GillySpy
12 years ago
That post does cover the host name. For the rest:
supported installer properties (must use ALL CAPS): msiexec /qn /i ampagent-5.3.47657-x86.msi HOST=k1000.company.com
Note that ssl is not needed as the agent will try ssl by default and fallback to 80 if ssl is not available.
supported installer properties (must use ALL CAPS): msiexec /qn /i ampagent-5.3.47657-x86.msi HOST=k1000.company.com
- HOST - set the host name :
msiexec /qn /i ampagent-5.3.47657-x86.msi HOST=k1000.company.com
- DEBUG - set the debug status at install time:
msiexec /qn /i ampagent-5.3.47657-x86.msi HOST=k1000.company.com DEBUG=true
- NOHOOKS - do NOT install LOGON or BOOTUP hooks :
msiexec /qn /i ampagent5.3.47657-x86.msi HOST=k1000.company.com NOHOOKS=1
- CLONEPREP - do NOT start AMP service until next reboot :
msiexec /qn /i ampagent-5.3.47657-x86.msi HOST=k1000.company.com CLONEPREP=1
- INSTALLLOCATION - override default program install location :
msiexec /qn /i ampagent-5.3.47657-x86.msi HOST=k1000.company.com INSTALLLOCATION="D:\My Programs\AMP"
- APPDATALOCATION - override default application data location :
msiexec /qn /i ampagent- 5.3.47657 -x86.msi HOST= k1000.company.comAPPDATALOCATION="D:\My Data\AMP"
Note that ssl is not needed as the agent will try ssl by default and fallback to 80 if ssl is not available.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.