Uninstall-AllApps
Uninstalls all apps
try {
"Uninstalling all apps, please wait... (ignore any error messages about packages that can't be removed, it's fine)"
Get-AppxPackage | Remove-AppxPackage
"Uninstalled all applications, your PC is clean now."
exit 0 # success
} catch {
"?? ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}This script has no configurable parameters.