当我尝试在https上使用Invoke-WebRequest时,我得到了一些奇怪的错误:
" Invoke-WebRequest:底层连接已关闭:无法为SSL / TLS安全通道建立信任关系。"
这是我的代码:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls
$url = "https://X.X.X.X:4343/officescan/console/html/cgi/cgiChkMasterPwd.exe"
$r = Invoke-WebRequest $url -SessionVariable office
对我有什么建议吗?非常感谢。