maint(one-liner.ps1) add silent argument

This commit is contained in:
Ahrimdon 2024-11-19 15:01:34 -05:00
parent edd23be867
commit c415b43eee

View File

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