Push software via GPO with commandline augments

anthony evans 0 Reputation points
2023-03-27T15:51:15.9733333+00:00

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.

Windows for business Windows Server User experience Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 44,746 Reputation points
    2023-03-28T14:55:48.8966667+00:00
    
    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--
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.