Add files via upload
parent
c379a36353
commit
2cb2d5d3ae
|
@ -1 +1 @@
|
|||
powershell.exe -executionpolicy bypass -file "%~dp0winget-install-and-update.ps1"
|
||||
powershell.exe -executionpolicy bypass -file "%~dp0winget-install-and-update.ps1"
|
|
@ -0,0 +1,5 @@
|
|||
Google.Chrome
|
||||
Mozilla.Firefox
|
||||
Mozilla.Firefox.ESR
|
||||
Microsoft.Edge
|
||||
Microsoft.Office
|
|
@ -3,7 +3,8 @@ $WingetUpdatePath = "$env:ProgramData\winget-update"
|
|||
if (!(Test-Path $WingetUpdatePath)){
|
||||
New-Item -ItemType Directory -Force -Path $WingetUpdatePath
|
||||
}
|
||||
Copy-Item -Path "$PSScriptRoot\winget-update\*" -Destination $WingetUpdatePath -Recurse -Force
|
||||
Copy-Item -Path "$PSScriptRoot\winget-update\*" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
||||
Copy-Item -Path "$PSScriptRoot\excluded_apps.txt" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
||||
|
||||
# Set dummy regkeys for notification name and icon
|
||||
& reg add "HKCR\AppUserModelId\Windows.SystemToast.Winget.Notification" /v DisplayName /t REG_EXPAND_SZ /d "Application Update" /f
|
||||
|
@ -30,4 +31,4 @@ $task = New-ScheduledTask -Action $taskAction -Principal $taskUserPrincipal -Set
|
|||
Register-ScheduledTask -TaskName 'Winget Update Notify' -InputObject $task -Force
|
||||
|
||||
# Run Winget
|
||||
Get-ScheduledTask -TaskName "Winget Update" -ErrorAction SilentlyContinue | Start-ScheduledTask -ErrorAction SilentlyContinue
|
||||
Get-ScheduledTask -TaskName "Winget Update" -ErrorAction SilentlyContinue | Start-ScheduledTask -ErrorAction SilentlyContinue
|
Loading…
Reference in New Issue