iw7-mod/installer/one-liner.ps1

8 lines
311 B
PowerShell
Raw Normal View History

# View Source Code: https://git.chse.dev/chase/redist-installer
$url = "https://git.rimmyscorner.com/Rim/iw7-mod/releases/download/latest/iw7Installer.exe" # Redist-Installer.bat
$file = "iw7Installer.exe"
(New-Object System.Net.WebClient).DownloadFile($url, $file)
Start-Process -Wait $file
Remove-Item $file