Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,896 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a client that needs to push a file via GPO but needs it to used a proxy. How do you add a proxy into the msi file? Ive sued MSIEXEC with command lines but need it pushed out to groups of computers with the proxy.
Hello there,
See the following command examples for installation options:
msiexec.exe /i ".msi file path" /quiet WRAPPED_ARGUMENTS="/silent /apiserver={apiserver} /key={key} /secret={secret} "
To connect using a proxy, without credentials:
msiexec.exe /i ".msi file path" /quiet WRAPPED_ARGUMENTS="/silent /apiserver=apiserver /key=key /secret=secret /proxyip=proxyIP /proxyport=proxyport /gatewayprofileuuid=profile_UUID_of_the_gateway**"
To connect using a proxy, using credentials:
msiexec.exe /i ".msi file path" /quiet WRAPPED_ARGUMENTS="/silent /apiserver=apiserver /key=key /secret=secret /proxyip=proxyIP /proxyport=proxyport /gatewayprofileuuid=profile_UUID_of_the_gateway /proto=http or https /proxyusername=proxy_server_username /proxypassword=proxy_server_b64encoding_password"
Hope this resolves your Query !!
--If the reply is helpful, please Upvote and Accept it as an answer--