redist-installer/one-liner.ps1

8 lines
294 B
PowerShell
Raw Normal View History

2023-01-17 14:38:01 -05:00
$url = "https://github.com/chxseh/redist-installer/releases/download/latest/Redist-Installer.bat"
$temp = [Environment]::GetEnvironmentVariable("TEMP")
$file = "$temp\Redist-Installer.bat"
(New-Object System.Net.WebClient).DownloadFile($url, $file)
2023-03-04 14:30:44 -05:00
Start-Process -Wait $file
Remove-Item $file