Category filter
Scripts to uninstall Windows Store apps
Windows 10 comes with a set of pre-installed apps. However, not all apps might be useful in an organization. Using Hexnode, the administrators can deploy scripts to uninstall Windows store apps.
Jump To
Batch Script
1 |
msiexec /x "path_to_msi “ /qn |
E.g., To remove the app Notepad saved in C drive,
msiexec /x "C:\TEMP\XmlNotepad.msi" /qn
Powershell Script
1 |
Get-AppxPackage “*name of the app*” | Remove-AppxPackage |
E.g., To remove the system app Alarms & Clock,
Get-AppxPackage * Microsoft.WindowsAlarms * | Remove-AppxPackage
Need more help?