2024-11-19 15:01:34 -05:00
|
|
|
$url = "https://git.rimmyscorner.com/Rim/iw7-mod/releases/download/latest/iw7Installer.exe"
|
2024-11-19 02:21:01 -05:00
|
|
|
$file = "iw7Installer.exe"
|
|
|
|
|
|
|
|
(New-Object System.Net.WebClient).DownloadFile($url, $file)
|
2024-11-19 15:01:34 -05:00
|
|
|
Start-Process -Wait $file -ArgumentList "-s"
|
2024-11-19 02:21:01 -05:00
|
|
|
Remove-Item $file
|