Rewrite modules (untested)
This commit is contained in:
parent
b3d3ee6403
commit
eba57e6c8a
53 changed files with 1288 additions and 394 deletions
49
modules.d/GPO_WindowsStore.conf
Normal file
49
modules.d/GPO_WindowsStore.conf
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"Name" : "Windows Store (GPO)",
|
||||
"Description" : "This module Desactivate Windows Store functionnality like GPO does.",
|
||||
"actions" :
|
||||
[
|
||||
{
|
||||
"_comment" : "Disable All Windows Store Application - Appx (Windows Entreprise and Education)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\Software\\Policies\\Microsoft\\WindowsStore",
|
||||
"key" : "DisableStoreApps",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable Windows Store (Windows Pro, Entreprise ans Education)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\Software\\Policies\\Microsoft\\WindowsStore",
|
||||
"key" : "RemoveWindowsStore",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable Open with Windows Store in Explorer (Windows Pro, Entreprise and Education)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer",
|
||||
"key" : "NoUseStoreOpenWith",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Show only private repository (Windows Pro, Entreprise and Education)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\Software\\Policies\\Microsoft\\WindowsStore",
|
||||
"key" : "RequirePrivateStoreOnly",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable message to update tu Windows last version (Windows Pro, Entreprise and Education)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\WindowsStore",
|
||||
"key" : "DisableOsUpgrade",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable push to install (Windows Pro, Entreprise and Education)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\PushToInstall",
|
||||
"key" : "DisablePushToInstall",
|
||||
"value" : "1"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue