confOS/windows/installers/runner.ps1

16 lines
368 B
PowerShell
Raw Normal View History

2024-07-02 11:40:49 +02:00
param (
[string]$script
)
$fileName = "$script.bat"
$url = "https://git.mylloon.fr/Anri/confOS/raw/branch/main/windows/installers/$fileName"
$filePath = Join-Path -Path $env:TEMP -ChildPath $fileName
2024-07-02 11:42:17 +02:00
Write-Host "Downloading $fileName..."
2024-07-02 11:40:49 +02:00
Invoke-WebRequest -Uri $url -OutFile $filePath
2024-07-02 12:06:36 +02:00
Start-Process $filePath -NoNewWindow -Wait;
2024-07-02 11:40:49 +02:00
Remove-Item -Path $filePath
exit