mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
2354645b47
* Compile Winutil * Update Invoke-WPFOOSU * Compile Winutil * Modify Winget program installs did a waterfall type installer. First trys systemwide at admin prompt, then user scope, then unelevated with no scope. This should fix ALL program installs. * Compile Winutil --------- Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com>
76 lines
3.5 KiB
PowerShell
76 lines
3.5 KiB
PowerShell
Function Install-WinUtilProgramWinget {
|
|
|
|
<#
|
|
.SYNOPSIS
|
|
Manages the provided programs using Winget
|
|
|
|
.PARAMETER ProgramsToInstall
|
|
A list of programs to manage
|
|
|
|
.PARAMETER manage
|
|
The action to perform on the programs, can be either 'Installing' or 'Uninstalling'
|
|
|
|
.NOTES
|
|
The triple quotes are required any time you need a " in a normal script block.
|
|
#>
|
|
|
|
param(
|
|
$ProgramsToInstall,
|
|
$manage = "Installing"
|
|
)
|
|
|
|
$x = 0
|
|
$count = $($ProgramsToInstall -split ",").Count
|
|
|
|
Write-Progress -Activity "$manage Applications" -Status "Starting" -PercentComplete 0
|
|
|
|
Foreach ($Program in $($ProgramsToInstall -split ",")){
|
|
|
|
Write-Progress -Activity "$manage Applications" -Status "$manage $Program $($x + 1) of $count" -PercentComplete $($x/$count*100)
|
|
if($manage -eq "Installing"){
|
|
# Install package via ID, if it fails try again with different scope and then with an unelevated prompt.
|
|
# Since Install-WinGetPackage might not be directly available, we use winget install command as a workaround.
|
|
# Winget, not all installers honor any of the following: System-wide, User Installs, or Unelevated Prompt OR Silent Install Mode.
|
|
# This is up to the individual package maintainers to enable these options. Aka. not as clean as Linux Package Managers.
|
|
try {
|
|
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $Program --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru).ExitCode
|
|
if($status -ne 0){
|
|
Write-Host "Attempt with User scope"
|
|
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $Program --scope user --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru).ExitCode
|
|
if($status -ne 0){
|
|
Write-Host "Attempt with Unelevated prompt"
|
|
$status = $(Start-Process -FilePath "powershell" -ArgumentList "-Command Start-Process winget -ArgumentList 'install --id $Program --silent --accept-source-agreements --accept-package-agreements' -Verb runAsUser" -Wait -PassThru).ExitCode
|
|
if($status -ne 0){
|
|
Write-Host "Failed to install $Program."
|
|
} else {
|
|
Write-Host "$Program installed successfully with Unelevated prompt."
|
|
}
|
|
} else {
|
|
Write-Host "$Program installed successfully with User scope."
|
|
}
|
|
} else {
|
|
Write-Host "$Program installed successfully."
|
|
}
|
|
} catch {
|
|
Write-Host "Failed to install $Program due to an error: $_"
|
|
}
|
|
}
|
|
if($manage -eq "Uninstalling"){
|
|
# Uninstall package via ID using winget directly.
|
|
try {
|
|
$status = $(Start-Process -FilePath "winget" -ArgumentList "uninstall --id $Program --silent" -Wait -PassThru).ExitCode
|
|
if($status -ne 0){
|
|
Write-Host "Failed to uninstall $Program."
|
|
} else {
|
|
Write-Host "$Program uninstalled successfully."
|
|
}
|
|
} catch {
|
|
Write-Host "Failed to uninstall $Program due to an error: $_"
|
|
}
|
|
}
|
|
$X++
|
|
}
|
|
|
|
Write-Progress -Activity "$manage Applications" -Status "Finished" -Completed
|
|
}
|