maint: add one liner for use with irm & iex

This commit is contained in:
Ahrimdon 2024-11-19 02:21:01 -05:00
parent 6d97c6fb05
commit dcbea2353e

7
installer/one-liner.ps1 Normal file
View File

@ -0,0 +1,7 @@
# 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