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,22 @@
{
"Name" : "Windows Tips (GPO)",
"Description" : "This module desactivate Windows tips like GPO does.",
"actions" :
[
{
"_comment" : "Do not display Windows Tips",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableSoftLanding",
"value" : "1"
}
,
{
"_comment" : "Disable Windows Consumers Features",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
"key" : "DisableWindowsConsumerFeatures",
"value" : "1"
}
]
}