Hi,
Not familiar with Power Shell at all.
However, I use this script after a clean Windows 10 setup to remove all Windows apps except Store.
Please advise how can I add "App Installer" "Microsoft.DesktopAppInstaller" to this exception?
So it will remove all apps except "Store" and "App Installer"?
Get-AppxPackage -AllUsers | Where-Object {$_.name –notlike “*store*”} | Remove-AppxPackage
Thanks.