Add some modules
This commit is contained in:
parent
6c2ab58781
commit
033a4fa843
9 changed files with 104 additions and 1 deletions
11
modules.d/BlockHosts.conf
Normal file
11
modules.d/BlockHosts.conf
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name" : "Block unwanted Host",
|
||||||
|
"description" : "This module block some hosts from Microsoft",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "BlockHost",
|
||||||
|
"file" : "hosts.txt",
|
||||||
|
"host" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
12
modules.d/BlockIP.conf
Normal file
12
modules.d/BlockIP.conf
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"name" : "Block IP From MS servers",
|
||||||
|
"description" : "Disable Advertising",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "FwBlockOutputIP",
|
||||||
|
"ip" : "",
|
||||||
|
"file" : "ip.txt"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
11
modules.d/DelModernApp.conf
Normal file
11
modules.d/DelModernApp.conf
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name" : "Delete Metro App",
|
||||||
|
"description" : "This module delete all useless modern app",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "UninstallModernApp",
|
||||||
|
"file" : "apps.txt",
|
||||||
|
"removeProvisionned" : "true"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
14
modules.d/DisableAdvertising.conf
Normal file
14
modules.d/DisableAdvertising.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"name" : "Disable Advertising",
|
||||||
|
"description" : "Disable Advertising",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"value" : "1",
|
||||||
|
"key" : "DisabledByGroupPolicy",
|
||||||
|
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AdvertisingInfo",
|
||||||
|
"type" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
11
modules.d/DisableFeatures.conf
Normal file
11
modules.d/DisableFeatures.conf
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name" : "Disable Features",
|
||||||
|
"description" : "This module disable some useless Windows Features",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "DisableFeature",
|
||||||
|
"file" : "features.txt",
|
||||||
|
"name" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
11
modules.d/DisableServices.conf
Normal file
11
modules.d/DisableServices.conf
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name" : "Disable Service",
|
||||||
|
"description" : "This module delete services known to send data to Microsoft",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "DisableService",
|
||||||
|
"file" : "services.txt",
|
||||||
|
"name" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
22
modules.d/DisableSheduledTasks.conf
Normal file
22
modules.d/DisableSheduledTasks.conf
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"name" : "Remove Scheduled tasks",
|
||||||
|
"description" : "Remove some scheduled tasks",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "RemoveScheduledTask",
|
||||||
|
"path" : "",
|
||||||
|
"name" : "",
|
||||||
|
"file" : "tasks.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "RemoveScheduledTask",
|
||||||
|
"path" : "\\Microsoft\\Windows\\Device Setup\\",
|
||||||
|
"name" : "Metadata Refresh"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "RemoveScheduledTask",
|
||||||
|
"path" : "\\Microsoft\\Device Setup\\",
|
||||||
|
"name" : "Metadata Refresh"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
11
modules.d/DisableSheduledTasks/tasks.txt
Normal file
11
modules.d/DisableSheduledTasks/tasks.txt
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
Microsoft Compatibility Appraiser
|
||||||
|
ProgramDataUpdater
|
||||||
|
CreateObjectTask
|
||||||
|
Consolidator
|
||||||
|
KernelCeipTask
|
||||||
|
UsbCeip
|
||||||
|
SmartScreenSpecific
|
||||||
|
Microsoft-Windows-DiskDiagnosticDataCollector
|
||||||
|
DmClient
|
||||||
|
MNO Metadata Parser
|
||||||
|
QueueReporting
|
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"action" : "KillProcess",
|
"action" : "KillProcess",
|
||||||
"name" : "explorer"
|
"name" : "explorer.exe"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"_comment" : "OneDrive Uninstaller x64 version",
|
"_comment" : "OneDrive Uninstaller x64 version",
|
||||||
|
|
Reference in a new issue