Rewrite modules (untested)

This commit is contained in:
Yorick Barbanneau 2018-03-25 16:15:10 +02:00
parent b3d3ee6403
commit eba57e6c8a
53 changed files with 1288 additions and 394 deletions

View 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"
}
]
}