

In this case, we'll use it to remove the additional apps from your system.ĭeleting the apps works a little differently to hiding.
MICROSOFT OFFICE UNINSTALL TOOL STUCK WINDOWS
The DISM command is relatively powerful and can be used to service a Windows system in many ways. Want to truly obliterate every piece of bloatware from your system using PowerShell? There's a different command line tool for that: DISM.ĭISM stands for Deployment Imaging Service and Management. If at a later date you realize that you do require the app, you can bring it back. Hiding a pre-installed app has the advantage of obscuring it from your view without actually deleting it from your system. Get-AppxPackage -name "Microsoft.WindowsPhone " | Remove-AppxPackage Get-AppxPackage -name " " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsStore " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BioEnrollment " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingWeather " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.MicrosoftOfficeHub " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.MicrosoftSolitaireCollection " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsMaps " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.Getstarted " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsCamera " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingSports " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.XboxApp " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingNews " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsCalculator " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.3DBuilder " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingFinance " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.People " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingFoodAndDrink " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingHealthAndFitness " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingTravel " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.XboxIdentityProvider " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.XboxGameCallableUI " | Remove-AppxPackage Get-AppxPackage -name "Microsoft.ZuneMusic " | Remove-AppxPackage

MICROSOFT OFFICE UNINSTALL TOOL STUCK CODE
Hide Apps Using the "Remove-AppxPackage" CommandĮntering the following code into the PowerShell will hide each application you enter. The PowerShell commands can remove any packages ranging from the Zune Music Player to Bing Health and Fitness, to the Microsoft Windows Calculator.
