You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Throws and exception due to webclient not accepting path as part of the second parameter (it appears this was tightened up in the latest versions of .net).
Line 93 of download_whdownload_games.ps1:
$webclient.DownloadFile($whdownloadGameUrl, $whdloadGameFile)
Throws and exception due to webclient not accepting path as part of the second parameter (it appears this was tightened up in the latest versions of .net).
To get around this, I changed line 93 to:
Invoke-Webrequest -Uri $whdownloadGameUrl -OutFile $whdloadGameFile
And that seems to work correctly.
This may be an issue in other scripts in your repo.
(Thanks for writing these - they are very useful).
The text was updated successfully, but these errors were encountered: