Files
management-scripts/Uninstall-Windows10UpdateAssistant.ps1
2019-11-11 19:22:39 -05:00

4 lines
248 B
PowerShell

## Uninstall the Windows 10 Upgrade Assistant
If ( Test-Path "${Env:SystemDrive}\Windows10Upgrade\Windows10UpgraderApp.exe" )
{ Start-Process "${Env:SystemDrive}\Windows10Upgrade\Windows10UpgraderApp.exe" -ArgumentList '/ForceUninstall' -Wait }