PowerShellを実行するポリシーを変更する。
powershell -Command "Set-ExecutionPolicy Unrestricted"
ポリシーの種類
url.txtを読み込んで各行のURLで示されたファイルをダウンロードする。
$webClient = New-Object System.Net.WebClient $Urls = Get-Content url.txt for ( $i = 1; $i -le $Urls.Length; $i++ ){ $webClient.DownloadFile($Urls[$i - 1], ($Urls[$i - 1]).Substring(($Urls[$i - 1]).LastIndexOf("/") + 1)) }
http://www.jitec.ipa.go.jp/1_04hanni_sukiru/mondai_kaitou_2004h16_2/2004h16a_ad_am_ans.pdf http://www.jitec.ipa.go.jp/1_04hanni_sukiru/mondai_kaitou_2004h16_2/2004h16a_ad_pm_ans.pdf http://www.jitec.ipa.go.jp/1_04hanni_sukiru/mondai_kaitou_2004h16_2/2004h16a_fe_am_ans.pdf http://www.jitec.ipa.go.jp/1_04hanni_sukiru/mondai_kaitou_2004h16_2/2004h16a_fe_pm_ans.pdf