powershell
$res = Invoke-WebRequest -Uri $url;
IEの初期設定がされていない場合、この行でエラーが出てしまう。
回避するためには、IEの推奨設定を指定するとよい。
新しいブラウザのEdgeを利用している場合でも、IEを起動したことがないPCでこの現象が確認された。
参考
- Invoke-WebRequest - https://technet.microsoft.com/en-us/library/hh849901.aspx
Go to list of users who liked
More than 5 years have passed since last update.
$res = Invoke-WebRequest -Uri $url;
IEの初期設定がされていない場合、この行でエラーが出てしまう。
回避するためには、IEの推奨設定を指定するとよい。
新しいブラウザのEdgeを利用している場合でも、IEを起動したことがないPCでこの現象が確認された。
Register as a new user and use Qiita more conveniently
Go to list of users who liked