7
Internet Explorerエンジンが使用できないため、応答コンテンツを解析できません。
PowerShellを使用してチャンネル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 = "mp4high" …