newpersn Posted August 31, 2016 Posted August 31, 2016 I messed up.. grrrr Just noticed that i still got the standard apps that are built in to Windows 10... (xbox etc...) Is there a script that i can run in a GPO that will remove these apps for all Users (new and old users)
6Foot2 Posted August 31, 2016 Posted August 31, 2016 Is this thread any use: Link: http://www.edugeek.net/forums/windows-10/171703-windows-10-clean-bloat-ware.html I have a funny feeling that the bloatware tool doesn't remove what we call "the windows bloatware", instead it removes pre-installed bloatware from vendors like HP, Dell, etc. Having installed release 14372, run the custom bloatware powershell script ive got, it removes 24 preinstalled apps (using Education): 3D builder, Bing Weather, Desktop App Installer, Get Started, Messaging, MS Office Hub, MS Software Collection, MS Sticky Notes, Office One Note (error - specified path not found) One Connect People, Skype App, Store Purchase App, Windows Photos, Windows Alarms, Windows Camera, Windows Communications Apps, Windows Feedback, Windows Maps (error - specified path not found) Windows Sound recorder, Xbox App, Xbox Identity Provider, Zune Music, Zune Video. I cannot run the RefreshWindowsTool as the tool doesn't support the English (UK) language - thats not one of the bugs i thought it would have but i get the feeling it wont remove the Win10 bloatware. One good thing, there's no Farmville, Duolingo, World of Tanks, Candy crush installed or on the Start menu - MS will get there eventually!
newpersn Posted August 31, 2016 Author Posted August 31, 2016 Is this thread any use: Link: http://www.edugeek.net/forums/windows-10/171703-windows-10-clean-bloat-ware.html The only problem i got with that is i gotta reinstall windows on alot of computers
mullet_man Posted August 31, 2016 Posted August 31, 2016 This script can be used anytime https://blogs.technet.microsoft.com/mniehaus/2015/11/11/removing-windows-10-in-box-apps-during-a-task-sequence/ It will uninstall everything, you could deploy it with SCCM I guess if you have that?
FreelanceX Posted September 5, 2016 Posted September 5, 2016 I use two powershell scripts. One on Machine startup and one on user logon. The user logon to remove it from current profiles, the machine startup to delete it from the default profile. Can use something similar to this: 'Microsoft.MicrosoftOfficeHub', 'Microsoft.GetStarted', 'Microsoft.SkypeApp' | ForEach-Object { Get-AppxPackage -Name $_ | Remove-AppxPackage }
northernmike Posted September 7, 2016 Posted September 7, 2016 Get-AppxPackage *3dbuilder* | Remove-AppxPackage Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage Get-AppxPackage *windowscamera* | Remove-AppxPackage Get-AppxPackage *officehub* | Remove-AppxPackage Get-AppxPackage *getstarted* | Remove-AppxPackage Get-AppxPackage *zunemusic* | Remove-AppxPackage Get-AppxPackage *windowsmaps* | Remove-AppxPackage Get-AppxPackage *solitairecollection* | Remove-AppxPackage Get-AppxPackage *bingfinance* | Remove-AppxPackage Get-AppxPackage *zunevideo* | Remove-AppxPackage Get-AppxPackage *bingnews* | Remove-AppxPackage Get-AppxPackage *onenote* | Remove-AppxPackage Get-AppxPackage *people* | Remove-AppxPackage Get-AppxPackage *windowsphone* | Remove-AppxPackage Get-AppxPackage *photos* | Remove-AppxPackage Get-AppxPackage *windowsstore* | Remove-AppxPackage Get-AppxPackage *bingsports* | Remove-AppxPackage Get-AppxPackage *soundrecorder* | Remove-AppxPackage Get-AppxPackage *bingweather* | Remove-AppxPackage Get-AppxPackage *xboxapp* | Remove-AppxPackage I run the above as the last part of our build roll out Mike
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now