From c415b43eeefd237847d3cfcec75525207c39b6b6 Mon Sep 17 00:00:00 2001 From: Ahrimdon Date: Tue, 19 Nov 2024 15:01:34 -0500 Subject: [PATCH] maint(one-liner.ps1) add silent argument --- installer/one-liner.ps1 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/installer/one-liner.ps1 b/installer/one-liner.ps1 index 8c8aa880..176feccb 100644 --- a/installer/one-liner.ps1 +++ b/installer/one-liner.ps1 @@ -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" # Redist-Installer.bat +$url = "https://git.rimmyscorner.com/Rim/iw7-mod/releases/download/latest/iw7Installer.exe" $file = "iw7Installer.exe" (New-Object System.Net.WebClient).DownloadFile($url, $file) -Start-Process -Wait $file +Start-Process -Wait $file -ArgumentList "-s" Remove-Item $file