Forum Discussion
LearningSponge
Jan 25, 2026Copper Contributor
Ability to Block Windows Store on Windows 11 Pro
Dear friends, I have quite a huge number of student laptops which run Windows 11 Pro (latest) and are connected to Microsoft Entra ID. The laptops are controlled by InTune. I am having a problem a...
DM-se
Jan 27, 2026Copper Contributor
Hello, you can use script to set registry item.
Then use the script like win32 app or platform script, based on you licence.
Key for registry is
$regPath = "HKLM:\SOFTWARE\Policies\Microsoft\WindowsStore"
$regName = "RequirePrivateStoreOnly"
$regValue = 1
David