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"
$overwrite = $false
$destinationDirectory = join-path ([Environment]::GetFolderPath("MyDocuments")) "OfficeDevPnP"
# --- locals ---
$webClient = New-Object System.Net.WebClient
# --- functions ---
function PromptForInput ($Prompt, $default) {
$selection = read-Host "$Prompt`r`n(default: $default)"
if ($selection) {$selection} else {$default}
}
function DownloadEntries {
param ([string]$feedUrl)
$feed = [xml]$webClient.DownloadString($feedUrl)
$progress = 0
$pagepercent = 0
$entries = $feed.rss.channel.item.Length
$invalidChars = [System.IO.Path]::GetInvalidFileNameChars()
$feed.rss.channel.item | foreach {
$url = New-Object System.Uri($_.Enclosure.url)
$name = $_.title
$extension = [System.IO.Path]::GetExtension($url.Segments[-1])
$fileName = $name + $extension
$invalidchars | foreach { $filename = $filename.Replace($_, ' ') }
$saveFileName = join-path $destinationDirectory $fileName
$tempFilename = $saveFilename + ".tmp"
$filename
if ((-not $overwrite) -and (Test-Path -path $saveFileName))
{
write-progress -activity "$fileName already downloaded" -status "$pagepercent% ($progress / $entries) complete" -percentcomplete $pagepercent
}
else
{
write-progress -activity "Downloading $fileName" -status "$pagepercent% ($progress / $entries) complete" -percentcomplete $pagepercent
$webClient.DownloadFile($url, $tempFilename)
rename-item $tempFilename $saveFileName
}
$pagepercent = [Math]::floor((++$progress)/$entries*100)
}
}
# --- do the actual work ---
[string]$feedUrl = PromptForInput "Enter feed URL" $feedUrl
[string]$mediaType = PromptForInput "Enter media type`r`n(options:Wmv,WmvHigh,mp4,mp4high,zune,mp3)" $mediaType
$feedUrl += $mediaType
[string]$destinationDirectory = PromptForInput "Enter destination directory" $destinationDirectory
# if dest dir doesn't exist, create it
if (!(Test-Path -path $destinationDirectory)) { New-Item $destinationDirectory -type directory }
DownloadEntries $feedUrl
エラーが多すぎる
Web呼び出し要求では、パラメータ-UseBasicParsing
を使用するだけです
例えばスクリプト(2行目)では次を使用する必要があります。
$rss = Invoke-WebRequest -Uri $url -UseBasicParsing
スクリプトを変更せずに機能させるには:
私はここで解決策を見つけました: http://wahlnetwork.com/2015/11/17/solving-the-first-launch-configuration-error-with-powershells-invoke-webrequest-cmdlet/
IEがまだ最初に起動されておらず、下のウィンドウが表示されているため、エラーが発生している可能性があります。起動してその画面を表示すると、エラーメッセージは表示されなくなります。スクリプトを変更する必要はありません。
Invoke-WebRequestコマンドはInternet Explorerアセンブリに依存しており、デフォルトの動作に従って結果を解析するためにそれを呼び出しているためです。マットが提案するように、IEを起動し、最初の起動時にポップアップする設定プロンプトで選択を行うことができます。そして、あなたが経験するエラーは消えます。
ただし、これは、IEを起動したのと同じWindowsユーザーとしてPowerShellスクリプトを実行する場合にのみ可能です。 IE設定は、現在のWindowsプロファイルに保存されます。私のように、サーバー上のスケジューラーでSYSTEMユーザーとしてタスクを実行する場合、これは機能しません。
そのため、この例のように、スクリプトを変更して-UseBasicParsing引数を追加する必要があります:$WebResponse = Invoke-WebRequest -Uri $url -TimeoutSec 1800 -ErrorAction:Stop -Method:Post -Headers $headers -UseBasicParsing