由于Internet Explorer引擎不可用,因此无法解析响应内容,或者
我需要使用powershell下载Channel 9系列,但是我尝试的脚本有错误: 这个脚本 $url="https://channel9.msdn.com/blogs/OfficeDevPnP/feed/mp4high" $rss=invoke-webrequest -uri $url $destination="D:\Videos\OfficePnP" [xml]$rss.Content|foreach{ $_.SelectNodes("rss/channel/item/enclosure") }|foreach{ "Checking $($_.url.split("/")[-1]), we will skip it if it already exists in $($destination)" if(!(test-path ($destination + $_.url.split("/")[-1]))){ "Downloading: " + $_.url start-bitstransfer $_.url $destination } } 因错误而失败: 由于Internet Explorer引擎不可用,或者Internet Explorer的首次启动配置不完整,因此无法解析响应内容。指定UseBasicParsing参数,然后重试。 我也尝试过这个 # --- settings --- $feedUrl = "https://channel9.msdn.com/blogs/OfficeDevPnP/feed/mp4high" $mediaType = …