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/TSK_Shell.conf

25 lines
855 B
Text

{
"name" : "Remove Windows shell Tasks",
"description" : "Disable tasks relative to parental lock",
"actions" :
[
{
"_comment" : "Disable sync setting with Microsoft familly service task",
"action" : "RemoveScheduledTask",
"path" : "\\Microsoft\\Windows\\Shell\\",
"name" : "FamilySafetyMonitorToastTask"
},
{
"_comment" : "Disable parental lock monitor task",
"action" : "RemoveScheduledTask",
"path" : "\\Microsoft\\Windows\\shell\\",
"name" : "FamilySafetyMonitor"
},
{
"_comment" : "Disable parental lock update task",
"action" : "RemoveScheduledTask",
"path" : "\\Microsoft\\Windows\\Shell\\",
"name" : "FamilySafetyRefreshTask"
}
]
}