Add tasks relatives modules

This commit is contained in:
Yorick Barbanneau 2018-04-04 11:37:06 +02:00
parent d986ccb16d
commit ca98df6e24
6 changed files with 234 additions and 0 deletions

25
modules.d/TSK_Shell.conf Normal file
View file

@ -0,0 +1,25 @@
{
"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"
}
]
}