Rewrite modules (untested)
This commit is contained in:
parent
b3d3ee6403
commit
eba57e6c8a
53 changed files with 1288 additions and 394 deletions
37
modules.d/GPO_DynamicTiles.conf
Normal file
37
modules.d/GPO_DynamicTiles.conf
Normal file
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"Name" : "Tiles content (GPO)",
|
||||
"Description" : "This module desactivate Internet data loading for tiles like GPO does.",
|
||||
"actions" :
|
||||
[
|
||||
{
|
||||
"_comment" : "Disable cloud notifications for tiles (for current user)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
|
||||
"key" : "NoCloudApplicationNotification",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable notifications for tiles (for current user)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
|
||||
"key" : "NoTileApplicationNotification",
|
||||
"value" : "1"
|
||||
}
|
||||
,
|
||||
{
|
||||
"_comment" : "Disable cloud notifications for tiles (for user template hive)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKU:\\Default\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
|
||||
"key" : "NoCloudApplicationNotification",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"_comment" : "Disable notifications for tiles (for user templte hive)",
|
||||
"action" : "AddRegKey",
|
||||
"path" : "HKU:\\Default\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
|
||||
"key" : "NoTileApplicationNotification",
|
||||
"value" : "1"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
Reference in a new issue