4 lines
248 B
PowerShell
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 }
|