Prevent Windows Store updates but allow Windows Updates

Any insight on how to prevent the the store from updating/installing apps?
To achieve that, you need to integrate a reg tweak with NTLite:

Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore]
"AutoDownload"=dword:00000002

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\WindowsUpdate]
"AutoDownload"=dword:00000002
 
Back
Top