Update WAU-Uninstall.ps1

pull/95/head
Romain SANTOT 2022-05-30 17:38:30 +02:00
parent eaf972842b
commit ef5af88712
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,9 @@ try{
Get-ScheduledTask -TaskName "Winget-AutoUpdate-Notify" -ErrorAction SilentlyContinue | Unregister-ScheduledTask -Confirm:$False
& reg delete "HKCR\AppUserModelId\Windows.SystemToast.Winget.Notification" /f | Out-Null
& reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate" /f | Out-Null
if (Test-Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate") {
& reg delete "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate" /f | Out-Null
}
Write-host "Uninstallation succeeded!" -ForegroundColor Green
Start-sleep 1