Remove force install of Winget + Small improvements (#2083)

* Compile Winutil

* Add Run switch to Run winutil automatically after compilation

* Remove Winutil ForceInstall and unnecessary loading bar

---------

Co-authored-by: Marterich <Marterich@users.noreply.github.com>
This commit is contained in:
Martin Wiethan
2024-06-25 21:10:16 +02:00
committed by GitHub
parent 5dd3bb492f
commit 4958c5efe9
2 changed files with 18 additions and 8 deletions

View File

@ -1,5 +1,6 @@
param (
[switch]$Debug
[switch]$Debug,
[switch]$Run
)
$OFS = "`r`n"
$scriptname = "winutil.ps1"
@ -106,4 +107,8 @@ else {
}
Set-Content -Path $scriptname -Value ($script_content -join "`r`n") -Encoding ascii
Write-Progress -Activity "Compiling" -Completed
Write-Progress -Activity "Compiling" -Completed
if ($run){
Start-Process -FilePath "powershell" -ArgumentList ".\$scriptname"
}