2023-10-09 23:15:01 +00:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Handle GPO/Polices
|
|
|
|
|
|
|
|
.DESCRIPTION
|
|
|
|
Daily update settings from policies
|
|
|
|
#>
|
|
|
|
|
|
|
|
#Import functions
|
|
|
|
. "$PSScriptRoot\functions\Get-WAUConfig.ps1"
|
|
|
|
. "$PSScriptRoot\functions\Add-Shortcut.ps1"
|
|
|
|
|
2023-10-12 12:00:10 +00:00
|
|
|
#Check if GPO Management is enabled
|
|
|
|
$ActivateGPOManagement = Get-ItemPropertyValue "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate" -Name "WAU_ActivateGPOManagement" -ErrorAction SilentlyContinue
|
|
|
|
if ($ActivateGPOManagement -eq 1) {
|
2023-10-12 21:34:55 +00:00
|
|
|
#Add (or update) tag to activate WAU-Policies Management
|
2024-09-13 20:22:21 +00:00
|
|
|
New-ItemProperty "HKLM:\SOFTWARE\Romanitho\Winget-AutoUpdate" -Name WAU_RunGPOManagement -Value 1 -Force | Out-Null
|
2023-10-12 12:00:10 +00:00
|
|
|
}
|
|
|
|
|
2023-10-09 23:15:01 +00:00
|
|
|
#Get WAU settings
|
|
|
|
$WAUConfig = Get-WAUConfig
|
|
|
|
|
2023-10-12 12:00:10 +00:00
|
|
|
#Check if GPO got applied from Get-WAUConfig (tag)
|
2023-10-11 07:59:17 +00:00
|
|
|
if ($WAUConfig.WAU_RunGPOManagement -eq 1) {
|
2023-10-09 23:15:01 +00:00
|
|
|
|
2023-10-11 22:53:21 +00:00
|
|
|
#Log init
|
|
|
|
$GPOLogFile = "$($WAUConfig.InstallLocation)\logs\LatestAppliedSettings.txt"
|
|
|
|
Set-Content -Path $GPOLogFile -Value "### POLICY CYCLE - $(Get-Date) ###`n"
|
|
|
|
|
|
|
|
#Reset WAU_RunGPOManagement if not GPO managed anymore (This is used to run this job one last time and reset initial settings)
|
|
|
|
if ($($WAUConfig.WAU_ActivateGPOManagement -eq 1)) {
|
2023-10-12 21:34:55 +00:00
|
|
|
Add-Content -Path $GPOLogFile -Value "GPO Management Enabled. Policies updated."
|
2023-10-11 22:53:21 +00:00
|
|
|
}
|
|
|
|
else {
|
2024-09-13 20:22:21 +00:00
|
|
|
New-ItemProperty "HKLM:\SOFTWARE\Romanitho\Winget-AutoUpdate" -Name WAU_RunGPOManagement -Value 0 -Force | Out-Null
|
2023-10-11 22:53:21 +00:00
|
|
|
$WAUConfig.WAU_RunGPOManagement = 0
|
|
|
|
Add-Content -Path $GPOLogFile -Value "GPO Management Disabled. Policies removed."
|
|
|
|
}
|
|
|
|
|
2023-10-12 21:34:55 +00:00
|
|
|
#Get Winget-AutoUpdate scheduled task
|
|
|
|
$WAUTask = Get-ScheduledTask -TaskName 'Winget-AutoUpdate' -ErrorAction SilentlyContinue
|
|
|
|
|
2023-10-09 23:15:01 +00:00
|
|
|
#Update 'Winget-AutoUpdate' scheduled task settings
|
|
|
|
$taskTriggers = @()
|
|
|
|
if ($WAUConfig.WAU_UpdatesAtLogon -eq 1) {
|
|
|
|
$tasktriggers += New-ScheduledTaskTrigger -AtLogOn
|
|
|
|
}
|
|
|
|
if ($WAUConfig.WAU_UpdatesInterval -eq "Daily") {
|
2023-10-11 22:53:21 +00:00
|
|
|
$tasktriggers += New-ScheduledTaskTrigger -Daily -At $WAUConfig.WAU_UpdatesAtTime
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
|
|
|
elseif ($WAUConfig.WAU_UpdatesInterval -eq "BiDaily") {
|
2023-10-11 22:53:21 +00:00
|
|
|
$tasktriggers += New-ScheduledTaskTrigger -Daily -At $WAUConfig.WAU_UpdatesAtTime -DaysInterval 2
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
|
|
|
elseif ($WAUConfig.WAU_UpdatesInterval -eq "Weekly") {
|
2023-10-11 22:53:21 +00:00
|
|
|
$tasktriggers += New-ScheduledTaskTrigger -Weekly -At $WAUConfig.WAU_UpdatesAtTime -DaysOfWeek 2
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
|
|
|
elseif ($WAUConfig.WAU_UpdatesInterval -eq "BiWeekly") {
|
2023-10-11 22:53:21 +00:00
|
|
|
$tasktriggers += New-ScheduledTaskTrigger -Weekly -At $WAUConfig.WAU_UpdatesAtTime -DaysOfWeek 2 -WeeksInterval 2
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
|
|
|
elseif ($WAUConfig.WAU_UpdatesInterval -eq "Monthly") {
|
2023-10-11 22:53:21 +00:00
|
|
|
$tasktriggers += New-ScheduledTaskTrigger -Weekly -At $WAUConfig.WAU_UpdatesAtTime -DaysOfWeek 2 -WeeksInterval 4
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
2023-10-12 21:34:55 +00:00
|
|
|
#If trigger(s) set
|
2023-10-09 23:15:01 +00:00
|
|
|
if ($taskTriggers) {
|
2023-10-11 22:53:21 +00:00
|
|
|
#Edit scheduled task
|
|
|
|
Set-ScheduledTask -TaskPath $WAUTask.TaskPath -TaskName $WAUTask.TaskName -Trigger $taskTriggers | Out-Null
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
2023-10-12 21:34:55 +00:00
|
|
|
#If not, remove trigger(s)
|
|
|
|
else {
|
|
|
|
#Remove by setting past due date
|
|
|
|
$tasktriggers = New-ScheduledTaskTrigger -Once -At "01/01/1970"
|
|
|
|
Set-ScheduledTask -TaskPath $WAUTask.TaskPath -TaskName $WAUTask.TaskName -Trigger $taskTriggers | Out-Null
|
|
|
|
}
|
2023-10-09 23:15:01 +00:00
|
|
|
|
|
|
|
#Update Desktop shortcut
|
|
|
|
$DesktopShortcut = "${env:Public}\Desktop\WAU - Check for updated Apps.lnk"
|
|
|
|
if (($WAUConfig.WAU_DesktopShortcut -eq 1) -and !(Test-Path $DesktopShortcut)) {
|
|
|
|
Add-Shortcut "wscript.exe" $DesktopShortcut "`"$($WAUConfig.InstallLocation)\Invisible.vbs`" `"powershell.exe -NoProfile -ExecutionPolicy Bypass -File `"`"`"$($WAUConfig.InstallLocation)\user-run.ps1`"`"" "${env:SystemRoot}\System32\shell32.dll,-16739" "Manual start of Winget-AutoUpdate (WAU)..."
|
|
|
|
}
|
|
|
|
elseif ($WAUConfig.WAU_DesktopShortcut -ne 1) {
|
2023-10-11 22:53:21 +00:00
|
|
|
Remove-Item -Path $DesktopShortcut -Force -ErrorAction SilentlyContinue | Out-Null
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#Update Start Menu shortcuts
|
|
|
|
$StartMenuShortcut = "${env:ProgramData}\Microsoft\Windows\Start Menu\Programs\Winget-AutoUpdate (WAU)"
|
|
|
|
if (($WAUConfig.WAU_StartMenuShortcut -eq 1) -and !(Test-Path $StartMenuShortcut)) {
|
|
|
|
New-Item -ItemType Directory -Force -Path $StartMenuShortcut | Out-Null
|
|
|
|
Add-Shortcut "wscript.exe" "$StartMenuShortcut\WAU - Check for updated Apps.lnk" "`"$($WAUConfig.InstallLocation)\Invisible.vbs`" `"powershell.exe -NoProfile -ExecutionPolicy Bypass -File `"`"`"$($WAUConfig.InstallLocation)\user-run.ps1`"`"" "${env:SystemRoot}\System32\shell32.dll,-16739" "Manual start of Winget-AutoUpdate (WAU)..."
|
|
|
|
Add-Shortcut "wscript.exe" "$StartMenuShortcut\WAU - Open logs.lnk" "`"$($WAUConfig.InstallLocation)\Invisible.vbs`" `"powershell.exe -NoProfile -ExecutionPolicy Bypass -File `"`"`"$($WAUConfig.InstallLocation)\user-run.ps1`" -Logs`"" "${env:SystemRoot}\System32\shell32.dll,-16763" "Open existing WAU logs..."
|
|
|
|
Add-Shortcut "wscript.exe" "$StartMenuShortcut\WAU - Web Help.lnk" "`"$($WAUConfig.InstallLocation)\Invisible.vbs`" `"powershell.exe -NoProfile -ExecutionPolicy Bypass -File `"`"`"$($WAUConfig.InstallLocation)\user-run.ps1`" -Help`"" "${env:SystemRoot}\System32\shell32.dll,-24" "Help for WAU..."
|
|
|
|
}
|
|
|
|
elseif ($WAUConfig.WAU_StartMenuShortcut -ne 1) {
|
2023-10-11 22:53:21 +00:00
|
|
|
Remove-Item -Path $StartMenuShortcut -Recurse -Force -ErrorAction SilentlyContinue | Out-Null
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
2023-10-10 08:29:17 +00:00
|
|
|
|
|
|
|
#Log latest applied config
|
2023-10-11 22:53:21 +00:00
|
|
|
Add-Content -Path $GPOLogFile -Value "`nLatest applied settings:"
|
|
|
|
$WAUConfig.PSObject.Properties | Where-Object { $_.Name -like "WAU_*" } | Select-Object Name, Value | Out-File -Encoding default -FilePath $GPOLogFile -Append
|
2023-10-09 23:15:01 +00:00
|
|
|
}
|
|
|
|
|
2024-09-02 14:10:21 +00:00
|
|
|
Exit 0
|