Forum Discussion
keshavsingal
Oct 06, 2020Copper Contributor
PowerShell script deployment from Intune
Hi All, We are deploying powershell script to remove Microsoft store from windows 10 devices. We are using "Scripts" option in Intune. Commands are working fine manually but not when deploying ...
SeanMcAvinue
Oct 06, 2020MVP
Without seeing the actual script it's hard to say but you can disable the store natively in Intune without a script.
- keshavsingalOct 06, 2020Copper Contributor
SeanMcAvinue I am using below script:
Get-AppxPackage -allusers *WindowsStore* | Remove-AppxPackage
Can you please share native way to remove Store.