From 16044fafae6c4b6d22ea4ce8023e0ae88b225d82 Mon Sep 17 00:00:00 2001 From: Falco Date: Wed, 19 May 2021 10:16:12 +0200 Subject: [PATCH] update download links fixing 'http://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'. Exception calling "GetResponse" with "0" argument(s): "The remote server returned an error: (404) Not Found." --- manual/webpicmd/tools/chocolateyInstall.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/webpicmd/tools/chocolateyInstall.ps1 b/manual/webpicmd/tools/chocolateyInstall.ps1 index f674c9dbb..c11c20c2d 100644 --- a/manual/webpicmd/tools/chocolateyInstall.ps1 +++ b/manual/webpicmd/tools/chocolateyInstall.ps1 @@ -2,8 +2,8 @@ $packageName = 'webpicmd' $installerType = 'msi' # http://forums.iis.net/t/1178551.aspx?PLEASE+READ+WebPI+direct+download+links -$url = 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_x86_en-US.msi' -$url64 = 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' +$url = 'https://download.microsoft.com/download/8/4/9/849DBCF2-DFD9-49F5-9A19-9AEE5B29341A/WebPlatformInstaller_x86_en-US.msi' +$url64 = 'https://download.microsoft.com/download/8/4/9/849DBCF2-DFD9-49F5-9A19-9AEE5B29341A/WebPlatformInstaller_x64_en-US.msi' $silentArgs = "/qn /norestart" $installDir = Join-Path "$toolsDir" 'webpi'