Answer the question
In order to leave comments, you need to log in
How to cut a store from windows 10 using gpo?
Hello!
I am looking for a practiced method of cutting out the store and all related applications from Windows 10.
Not by blocking C: \ program files \ windows apps *, but by completely hiding all Metro applications so that they do not even appear. At least those that offer to install Windows.
Please do not send to Google. Because, 90% of the proposed methods are there, this is precisely the blocking of those.
Answer the question
In order to leave comments, you need to log in
I do like this on new PCs:
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Microsoft.WindowsStore*"} | where-object {$_.name -notlike "*Microsoft.WindowsCalculator*"} | where-object {$_.name -notlike "*Microsoft.BingWeather*"} | where-object {$_.name -notlike "*Microsoft.MicrosoftStickyNotes*"} | where-object {$_.name -notlike "*Microsoft.Windows.Photos*"} | where-object {$_.name -notlike "*Microsoft.NET.*"} | where-object {$_.name -notlike "*Microsoft.MicrosoftEdge*"} | Remove-AppxPackage
Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | where-object {$_.packagename -notlike "*Microsoft.WindowsCalculator*"} | where-object {$_.packagename -notlike "*Microsoft.BingWeather*"} | where-object {$_.packagename -notlike "*Microsoft.MicrosoftStickyNotes*"} | where-object {$_.packagename -notlike "*Microsoft.Windows.Photos*"} | where-object {$_.packagename -notlike "*Microsoft.NET.*"} | where-object {$_.packagename -notlike "*Microsoft.MicrosoftEdge*"} | Remove-AppxProvisionedPackage -online
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question