2023-02-06 18:16:01 +00:00
#Function to ask user consent before updating apps
function Invoke-UserApproval ( $outdated ) {
#Create / Update WAU Class for notification action
2023-04-23 14:14:46 +00:00
if ( $IsSystem ) {
$WAUClass = " HKLM:\Software\Classes\WAU "
$WAUClassCmd = " $WAUClass \shell\open\command "
2023-04-23 15:03:35 +00:00
$WAUClassRun = " Wscript.exe "" $WorkingDir \Invisible.vbs "" "" powershell.exe -NoProfile -ExecutionPolicy Bypass -Command & ' $WorkingDir \User-Run.ps1' -NotifApproved %1 "" "
2023-04-23 14:14:46 +00:00
New-Item $WAUClassCmd -Force -ErrorAction SilentlyContinue | Out-Null
New-ItemProperty -LiteralPath $WAUClass -Name 'URL Protocol' -Value '' -PropertyType String -Force -ErrorAction SilentlyContinue | Out-Null
2023-04-29 21:26:36 +00:00
New-ItemProperty -LiteralPath $WAUClass -Name '(default)' -Value " URL:WAU " -PropertyType String -Force -ErrorAction SilentlyContinue | Out-Null
2023-04-23 14:14:46 +00:00
New-ItemProperty -LiteralPath $WAUClass -Name 'EditFlags' -Value '2162688' -PropertyType DWord -Force -ErrorAction SilentlyContinue | Out-Null
New-ItemProperty -LiteralPath $WAUClassCmd -Name '(default)' -Value $WAUClassRun -PropertyType String -Force -ErrorAction SilentlyContinue | Out-Null
$Button1Action = " wau:system "
2023-04-23 23:49:20 +00:00
$OnClickAction = " wau:systemDialogBox "
2023-02-06 18:16:01 +00:00
}
else {
2023-04-23 14:14:46 +00:00
$Button1Action = " wau:user "
2023-04-23 23:49:20 +00:00
$OnClickAction = " wau:userDialogBox "
2023-02-06 18:16:01 +00:00
}
$OutdatedApps = @ ( )
#If White List
if ( $WAUConfig . WAU_UseWhiteList -eq 1 ) {
$toUpdate = Get-IncludedApps
foreach ( $app in $Outdated ) {
if ( ( $toUpdate -contains $app . Id ) -and $ ( $app . Version ) -ne " Unknown " ) {
2023-04-23 23:49:20 +00:00
$OutdatedApps + = " - $( $app . Name ) "
2023-02-06 18:16:01 +00:00
}
}
}
#If Black List or default
else {
$toSkip = Get-ExcludedApps
foreach ( $app in $Outdated ) {
if ( -not ( $toSkip -contains $app . Id ) -and $ ( $app . Version ) -ne " Unknown " ) {
2023-04-23 23:49:20 +00:00
$OutdatedApps + = " - $( $app . Name ) "
2023-02-06 18:16:01 +00:00
}
}
}
$body = $OutdatedApps | Out-String
if ( $body ) {
#Ask user to update apps
2023-04-23 23:49:20 +00:00
$Message = " Do you want to update these apps ? "
$body + = " `n Please save your work and close theses apps "
$WAUNotifContent = " $WorkingDir \config\NotifContent.txt "
New-Item -Path $WAUNotifContent -ItemType File -Force | Out-Null
Set-Content -Path $WAUNotifContent -Value $body
Start-NotifTask -Title " New available updates " -Message $Message -Body $body -ButtonDismiss -Button1Text " Yes " -Button1Action $Button1Action -OnClickAction $OnClickAction -MessageType " info "
2023-02-06 18:16:01 +00:00
Return 0
}
else {
Return 1
}
}