127 lines
5.4 KiB
PowerShell
127 lines
5.4 KiB
PowerShell
#Function to update an App
|
|
|
|
Function Update-App ($app) {
|
|
|
|
#Get App Info
|
|
$ReleaseNoteURL = Get-AppInfo $app.Id
|
|
if ($ReleaseNoteURL) {
|
|
$Button1Text = $NotifLocale.local.outputs.output[10].message
|
|
}
|
|
|
|
#Send available update notification
|
|
Write-ToLog "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)
|
|
Start-NotifTask -Title $Title -Message $Message -MessageType $MessageType -Balise $Balise -Button1Action $ReleaseNoteURL -Button1Text $Button1Text
|
|
|
|
#Check if mods exist for preinstall/install/upgrade
|
|
$ModsPreInstall, $ModsOverride, $ModsUpgrade, $ModsInstall, $ModsInstalled = Test-Mods $($app.Id)
|
|
|
|
#Winget upgrade
|
|
Write-ToLog "########## WINGET UPGRADE PROCESS STARTS FOR APPLICATION ID '$($App.Id)' ##########" "Gray"
|
|
|
|
#If PreInstall script exist
|
|
if ($ModsPreInstall) {
|
|
Write-ToLog "Modifications for $($app.Id) before upgrade are being applied..." "Yellow"
|
|
& "$ModsPreInstall"
|
|
}
|
|
|
|
#Run Winget Upgrade command
|
|
if ($ModsOverride) {
|
|
Write-ToLog "-> Running (overriding default): Winget upgrade --id $($app.Id) --accept-package-agreements --accept-source-agreements --override $ModsOverride"
|
|
& $Winget upgrade --id $($app.Id) --accept-package-agreements --accept-source-agreements --override $ModsOverride | Tee-Object -file $LogFile -Append
|
|
}
|
|
else {
|
|
Write-ToLog "-> Running: Winget upgrade --id $($app.Id) --accept-package-agreements --accept-source-agreements -h"
|
|
& $Winget upgrade --id $($app.Id) --accept-package-agreements --accept-source-agreements -h | Tee-Object -file $LogFile -Append
|
|
}
|
|
|
|
if ($ModsUpgrade) {
|
|
Write-ToLog "Modifications for $($app.Id) during upgrade are being applied..." "Yellow"
|
|
& "$ModsUpgrade"
|
|
}
|
|
|
|
#Check if application updated properly
|
|
$CheckOutdated = Get-WingetOutdatedApps
|
|
$FailedToUpgrade = $false
|
|
foreach ($CheckApp in $CheckOutdated) {
|
|
if ($($CheckApp.Id) -eq $($app.Id)) {
|
|
|
|
#Upgrade failed!
|
|
#Test for a Pending Reboot (Component Based Servicing/WindowsUpdate/CCM_ClientUtilities)
|
|
$PendingReboot = Test-PendingReboot
|
|
if ($PendingReboot -eq $true) {
|
|
Write-ToLog "-> A Pending Reboot lingers and probably prohibited $($app.Name) from upgrading...`n-> ...an install for $($app.Name) is NOT executed!" "Red"
|
|
$FailedToUpgrade = $true
|
|
break
|
|
}
|
|
|
|
#If app failed to upgrade, run Install command
|
|
Write-ToLog "-> An upgrade for $($app.Name) failed, now trying an install instead..." "Yellow"
|
|
|
|
if ($ModsOverride) {
|
|
Write-ToLog "-> Running (overriding default): Winget install --id $($app.Id) --accept-package-agreements --accept-source-agreements --override $ModsOverride"
|
|
& $Winget install --id $($app.Id) --accept-package-agreements --accept-source-agreements --override $ModsOverride | Tee-Object -file $LogFile -Append
|
|
}
|
|
else {
|
|
Write-ToLog "-> Running: Winget install --id $($app.Id) --accept-package-agreements --accept-source-agreements -h"
|
|
& $Winget install --id $($app.Id) --accept-package-agreements --accept-source-agreements -h | Tee-Object -file $LogFile -Append
|
|
}
|
|
|
|
if ($ModsInstall) {
|
|
Write-ToLog "Modifications for $($app.Id) during install are being applied..." "Yellow"
|
|
& "$ModsInstall"
|
|
}
|
|
|
|
#Check if application installed properly
|
|
$CheckOutdated2 = Get-WingetOutdatedApps
|
|
foreach ($CheckApp2 in $CheckOutdated2) {
|
|
if ($($CheckApp2.Id) -eq $($app.Id)) {
|
|
$FailedToUpgrade = $true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($FailedToUpgrade -eq $false) {
|
|
if ($ModsInstalled) {
|
|
Write-ToLog "Modifications for $($app.Id) after upgrade/install are being applied..." "Yellow"
|
|
& "$ModsInstalled"
|
|
}
|
|
}
|
|
|
|
Write-ToLog "########## WINGET UPGRADE PROCESS FINISHED FOR APPLICATION ID '$($App.Id)' ##########" "Gray"
|
|
|
|
#Notify installation
|
|
if ($FailedToUpgrade -eq $false) {
|
|
|
|
#Send success updated app notification
|
|
Write-ToLog "$($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)
|
|
Start-NotifTask -Title $Title -Message $Message -MessageType $MessageType -Balise $Balise -Button1Action $ReleaseNoteURL -Button1Text $Button1Text
|
|
|
|
$Script:InstallOK += 1
|
|
|
|
}
|
|
else {
|
|
|
|
#Send failed updated app notification
|
|
Write-ToLog "$($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)
|
|
Start-NotifTask -Title $Title -Message $Message -MessageType $MessageType -Balise $Balise -Button1Action $ReleaseNoteURL -Button1Text $Button1Text
|
|
|
|
}
|
|
|
|
} |