2022-04-13 16:50:06 +00:00
|
|
|
#Function to Update an App
|
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
Function Update-App ($app) {
|
|
|
|
|
2022-07-05 14:48:23 +00:00
|
|
|
#Get App Info
|
|
|
|
$OnClickAction = Get-AppInfo $app.Id
|
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
#Send available update notification
|
|
|
|
Write-Log "Updating $($app.Name) from $($app.Version) to $($app.AvailableVersion)..." "Cyan"
|
|
|
|
$Title = $NotifLocale.local.outputs.output[2].title -f $($app.Name)
|
|
|
|
$Message = $NotifLocale.local.outputs.output[2].message -f $($app.Version), $($app.AvailableVersion)
|
|
|
|
$MessageType = "info"
|
|
|
|
$Balise = $($app.Name)
|
2022-07-05 14:48:23 +00:00
|
|
|
Start-NotifTask $Title $Message $MessageType $Balise $OnClickAction
|
2022-04-05 13:17:18 +00:00
|
|
|
|
|
|
|
#Winget upgrade
|
|
|
|
Write-Log "########## WINGET UPGRADE PROCESS STARTS FOR APPLICATION ID '$($App.Id)' ##########" "Gray"
|
2022-04-13 16:50:06 +00:00
|
|
|
|
|
|
|
#Run Winget Upgrade command
|
|
|
|
& $Winget upgrade --id $($app.Id) --all --accept-package-agreements --accept-source-agreements -h | Tee-Object -file $LogFile -Append
|
2022-07-27 07:44:11 +00:00
|
|
|
|
2022-07-28 17:09:50 +00:00
|
|
|
#Set mods to apply as an upgrade
|
|
|
|
$ModsMode = "Upgrade"
|
|
|
|
|
2022-04-13 16:50:06 +00:00
|
|
|
#Check if application updated properly
|
|
|
|
$CheckOutdated = Get-WingetOutdatedApps
|
|
|
|
$FailedToUpgrade = $false
|
2022-06-10 08:26:41 +00:00
|
|
|
foreach ($CheckApp in $CheckOutdated) {
|
2022-04-13 16:50:06 +00:00
|
|
|
if ($($CheckApp.Id) -eq $($app.Id)) {
|
|
|
|
|
2022-07-30 01:48:37 +00:00
|
|
|
#Upgrade failed for a reason? Check for a Pending Reboot (Component Based Servicing/WindowsUpdate/CCM_ClientUtilities)
|
|
|
|
$PendingReboot = Test-PendingReboot
|
|
|
|
if ($PendingReboot) {
|
|
|
|
$FailedToUpgrade = $true
|
|
|
|
Write-Log "A Pending Reboot prohibited $($app.Id) from upgrading..." "Red"
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#If app failed to upgrade, run Install command
|
|
|
|
& $Winget install --id $($app.Id) --accept-package-agreements --accept-source-agreements -h | Tee-Object -file $LogFile -Append
|
2022-07-27 07:44:11 +00:00
|
|
|
|
2022-07-30 01:48:37 +00:00
|
|
|
#Set mods to apply as an install
|
|
|
|
$ModsMode = "Install"
|
2022-07-28 17:09:50 +00:00
|
|
|
|
2022-07-30 01:48:37 +00:00
|
|
|
#Check if application installed properly
|
|
|
|
$CheckOutdated2 = Get-WingetOutdatedApps
|
|
|
|
foreach ($CheckApp2 in $CheckOutdated2) {
|
|
|
|
if ($($CheckApp2.Id) -eq $($app.Id)) {
|
|
|
|
$FailedToUpgrade = $true
|
|
|
|
}
|
2022-05-05 19:48:04 +00:00
|
|
|
}
|
2022-04-05 13:17:18 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-13 16:50:06 +00:00
|
|
|
}
|
|
|
|
|
2022-07-27 15:40:40 +00:00
|
|
|
if ($FailedToUpgrade -eq $false) {
|
|
|
|
|
|
|
|
#Check if mods exist for install/upgrade
|
|
|
|
$ModsInstall, $ModsUpgrade = Test-Mods $($app.Id)
|
2022-07-28 17:45:11 +00:00
|
|
|
|
|
|
|
if (($ModsUpgrade) -and ($ModsMode -eq "Upgrade")) {
|
2022-07-27 15:40:40 +00:00
|
|
|
Write-Log "Modifications for $($app.Id) after upgrade are being applied..." "Yellow"
|
|
|
|
& "$ModsUpgrade"
|
|
|
|
}
|
2022-07-28 17:45:11 +00:00
|
|
|
elseif (($ModsInstall) -and ($ModsMode -eq "Install")) {
|
2022-07-28 17:09:50 +00:00
|
|
|
Write-Log "Modifications for $($app.Id) after install are being applied..." "Yellow"
|
|
|
|
& "$ModsInstall"
|
|
|
|
}
|
2022-07-27 15:40:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
Write-Log "########## WINGET UPGRADE PROCESS FINISHED FOR APPLICATION ID '$($App.Id)' ##########" "Gray"
|
|
|
|
|
|
|
|
#Notify installation
|
2022-06-10 08:26:41 +00:00
|
|
|
if ($FailedToUpgrade -eq $false) {
|
2022-04-13 16:50:06 +00:00
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
#Send success updated app notification
|
|
|
|
Write-Log "$($app.Name) updated to $($app.AvailableVersion) !" "Green"
|
|
|
|
|
|
|
|
#Send Notif
|
|
|
|
$Title = $NotifLocale.local.outputs.output[3].title -f $($app.Name)
|
|
|
|
$Message = $NotifLocale.local.outputs.output[3].message -f $($app.AvailableVersion)
|
|
|
|
$MessageType = "success"
|
|
|
|
$Balise = $($app.Name)
|
2022-07-05 14:48:23 +00:00
|
|
|
Start-NotifTask $Title $Message $MessageType $Balise $OnClickAction
|
2022-04-05 13:17:18 +00:00
|
|
|
|
2022-04-23 18:09:55 +00:00
|
|
|
$Script:InstallOK += 1
|
2022-04-13 16:50:06 +00:00
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
}
|
|
|
|
else {
|
2022-04-13 16:50:06 +00:00
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
#Send failed updated app notification
|
|
|
|
Write-Log "$($app.Name) update failed." "Red"
|
|
|
|
|
|
|
|
#Send Notif
|
|
|
|
$Title = $NotifLocale.local.outputs.output[4].title -f $($app.Name)
|
|
|
|
$Message = $NotifLocale.local.outputs.output[4].message
|
|
|
|
$MessageType = "error"
|
|
|
|
$Balise = $($app.Name)
|
2022-07-05 14:48:23 +00:00
|
|
|
Start-NotifTask $Title $Message $MessageType $Balise $OnClickAction
|
2022-04-13 16:50:06 +00:00
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
}
|
2022-04-13 16:50:06 +00:00
|
|
|
|
2022-04-05 13:17:18 +00:00
|
|
|
}
|