PowerShell 技能连载 - PowerShell Remoting and HTTP 403 Error

如果您在使用 PowerShell 远程操作时遇到“HTTP 403”错误,一个潜在的原因可能是代理服务器影响了请求。

不过,要禁用代理服务器很容易。只需要在您的呼叫中增加一个 session 选项并且将 ProxyAccessType 设置为“NoProxyServer”即可:

1
2
3
4
5
6
7
8
# you are connecting to this computer
# the computer in $destinationcomputer needs to have
# PowerShell remoting enabled
$DestinationComputer = 'server12'

$option = New-PSSessionOption -ProxyAccessType NoProxyServer

Invoke-Command -ScriptBlock { "Connected to $env:computername" } -ComputerName $DestinationComputer -SessionOption $option

PowerShell 技能连载 - PowerShell Remoting and HTTP 403 Error

http://blog.vichamp.com/2016/10/21/powershell-remoting-and-http-403-error/

作者

吴波

发布于

2016-10-21

更新于

2022-07-06

许可协议

评论