Jump to content

Uninstalling Windows 10 apps

Go to solution Solved by iasianxmofoii,

Just so anyone who is wondering this question as well i found the solution. Took me forever but i got it!

 

http://www.tenforums.com/tutorials/4689-apps-uninstall-windows-10-a.html#option3

Hello there everyone.

So i work in the IT department of and we are building new computers with windows 10 on them (YAY xD.) Now unfortunately the end-users can not have the windows apps that come preinstalled. We run off of a domain so each user has their own ID and can log into any computer using this ID. I am using a powershell/batch file to remove each app that i dont want individually (here.) Now that uninstalls the apps (or hides) the apps for that user, but when say another user logs in the apps reappear. Does anyone know of any other way how to fix this? I didn't know if i should put this under troubleshoot or OS. If this is the wrong place mods can you please move thank you

Link to comment
https://linustechtips.com/topic/584350-uninstalling-windows-10-apps/
Share on other sites

Link to post
Share on other sites

6 minutes ago, iasianxmofoii said:

Hello there everyone.

So i work in the IT department of and we are building new computers with windows 10 on them (YAY xD.) Now unfortunately the end-users can not have the windows apps that come preinstalled. We run off of a domain so each user has their own ID and can log into any computer using this ID. I am using a powershell/batch file to remove each app that i dont want individually (here.) Now that uninstalls the apps (or hides) the apps for that user, but when say another user logs in the apps reappear. Does anyone know of any other way how to fix this? I didn't know if i should put this under troubleshoot or OS. If this is the wrong place mods can you please move thank you

my school has that on our laptops, when i press it the app it says UAC Disabled, contact adminstration for access

Idk how they did it

Link to post
Share on other sites

I don't know if this work, I just searching on google : how to remove modern apps from windows 10 on a domain

 

And this was the first result
http://winaero.com/blog/how-to-remove-all-bundled-apps-in-windows-10/

 

Personally I "removed"(more like hid) a few but not all of them with powershell(as admin) with the following commands, this doesn't remove everything though, just the apps that I believe are entirely useless for a Desktop user (especially the phone app.. like seriously)

Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage *windowsphone* | Remove-AppxPackage
Get-AppxPackage *phone* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage
Get-AppxPackage *messaging* | Remove-AppxPackage
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Get-AppxPackage *zunevideo* | Remove-AppxPackage

So I know that this kind of command works, so surely the

Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online

should work to get rid of all of them at once?

CPU: AMD Ryzen 3700x / GPU: Asus Radeon RX 6750XT OC 12GB RAM: Corsair Vengeance LPX 2x16GB DDR4-3200
MOBO: MSI B450m Gaming Plus NVME: Corsair MP510 240GB / Case: TT Core v21 PSU: Seasonic 750W / OS: Bazzite

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×