File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,11 +93,14 @@ endfunction
9393 | Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } `
9494 | Select UninstallString).UninstallString
9595 }
96- Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64)..." -ForegroundColor Yellow;
97- "\$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64)") /quiet" | out-file "$env:TEMP\\uninstall.cmd" -Encoding ASCII;
96+ Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005 ..." -ForegroundColor Yellow;
97+ "\$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005 ") /quiet" | out-file "$env:TEMP\\uninstall.cmd" -Encoding ASCII;
9898 & $env:temp\\uninstall.cmd;
99- Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86)..." -Foreground Yellow;
100- "\$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86)") /quiet" | out-file "$env:TEMP\\uninstall.cmd" -Encoding ASCII;
99+ Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501..." -ForegroundColor Yellow;
100+ "\$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501") /quiet" | out-file "$env:TEMP\\uninstall.cmd" -Encoding ASCII;
101+ & $env:temp\\uninstall.cmd;
102+ Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501..." -Foreground Yellow;
103+ "\$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501") /quiet" | out-file "$env:TEMP\\uninstall.cmd" -Encoding ASCII;
101104 & $env:temp\\uninstall.cmd;
102105 Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow;
103106 $CTP_INSTALLER_PATH = "\$($env:TEMP)\\$CTP_FILENAME";
You can’t perform that action at this time.
0 commit comments