我需要访问位于“ http://site.com/script.aspx ”的导入脚本,并且我目前已经设置了一个 powershell 脚本来执行此操作,问题是脚本可能需要 10 分钟才能完成,这会导致GetResponse to tiemout with : "GetResponse" with "0" argument(s): "The operation has timed out"
$global:url= "http://site.com/script.aspx"
#$myHttpWebRequest = [system.net.WebRequest]::Create($url)
#$myHttpWebRequest.Timeout = 600000 # dosent seem to do whats needed
#$myHttpWebResponse = $myHttpWebRequest.GetResponse()
我该如何解决这个问题?