简体   繁体   中英

PowerShell Remoting when proxy server is used for LAN

A Proxy server is used for the LAN connectivity in my machine and when i try to create a remote powershell session using the command Enter-PSSession in my machine, powershell console throws the following exception,

First Try: Enter-PSSession -ComputerName server.com -Credential domain\\user\u003c/a>

Now, I tried along with -UseSSL option. Below is the exception i received this time,

Second Try: Enter-PSSession -ComputerName server.com -Credential domain\\user -useSSL

Can anyone please let me know how to create remote powershell session when in proxy LAN connection ?

In order to set proxy settings on connections for PS Remoting, use the New-PSSessionOptions commandlet and save the results as an object. $sessionOptions = New-PSSessionOptions [...] (you may need to research the options to specify there)

Then, use this object as a parameter on the -SessionOptions switch

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM