This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
win10-privacy-script/modules.d/GPO_DynamicTiles.conf

35 lines
1.4 KiB
Text

{
"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 template hive)",
"action" : "AddRegKey",
"path" : "HKU:\\Default\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
"key" : "NoTileApplicationNotification",
"value" : "1"
}
]
}