Commit this day work
This commit is contained in:
parent
f897ca973c
commit
b221e5db4d
13 changed files with 370 additions and 60 deletions
250
cleanW10.ps1
250
cleanW10.ps1
|
@ -76,7 +76,7 @@ function FwBlockOutputIP {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function remove_shitty_tasks () {
|
function DisablesheduledTask () {
|
||||||
param($taskList)
|
param($taskList)
|
||||||
Foreach ($task in $taskList){
|
Foreach ($task in $taskList){
|
||||||
Write-Host -NoNewline "`t$task : "
|
Write-Host -NoNewline "`t$task : "
|
||||||
|
@ -98,14 +98,9 @@ function remove_shitty_tasks () {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Modify a reg value
|
|
||||||
# Params :
|
|
||||||
# path : the complete path to reg key
|
|
||||||
# key : key name
|
|
||||||
# value : The value to write
|
|
||||||
function AddRegKey {
|
function AddRegKey {
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory=$false)]
|
[Parameter(Mandatory=$true)]
|
||||||
[object]$params
|
[object]$params
|
||||||
)
|
)
|
||||||
Write-Host -NoNewline "`t$($params.key) reg key to $($params.value) : "
|
Write-Host -NoNewline "`t$($params.key) reg key to $($params.value) : "
|
||||||
|
@ -114,7 +109,7 @@ function AddRegKey {
|
||||||
}
|
}
|
||||||
if ( -not $params.type ){ $params.type="DWORD" }
|
if ( -not $params.type ){ $params.type="DWORD" }
|
||||||
if ( -not (Test-Path $params.path) ){
|
if ( -not (Test-Path $params.path) ){
|
||||||
Write-Host -NoNewline "- creating path -"
|
Write-Host -NoNewline "- creating path - "
|
||||||
New-Item -Path $params.path -Force | Out-Null
|
New-Item -Path $params.path -Force | Out-Null
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
@ -132,59 +127,77 @@ function AddRegKey {
|
||||||
Write-host -ForegroundColor Green "done"
|
Write-host -ForegroundColor Green "done"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Delete a reg key
|
function DelRegKey {
|
||||||
# Params :
|
param(
|
||||||
# path : the complete path to reg key
|
[Parameter(Mandatory=$true)]
|
||||||
# key : key name
|
[object]$params
|
||||||
function delete_shitty_reg_key {
|
)
|
||||||
param([string]$path, [string]$key)
|
Write-Host -NoNewline "`tDelete registery key $($params.key) : "
|
||||||
Write-Host -NoNewline "`tDelete key $key reg : "
|
if ( ! (Test-Path $params.path) ){
|
||||||
if (!(Test-Path $path)){
|
Write-Host -ForegroundColor Red " Error path not found"
|
||||||
Write-Host -ForegroundColor Red -NoNewline "path not found"
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Remove-ItemProperty -Path $path -Name $key
|
Remove-ItemProperty -Path $path -Name $key
|
||||||
}
|
}
|
||||||
catch [System.Security.SecurityException]{
|
catch [System.Security.SecurityException]{
|
||||||
Write-Host -ForegroundColor Red "access denied"
|
Write-Host -ForegroundColor Red "Error in DelRegKey`n`t"
|
||||||
|
Write-Host -ForegounndColor DarkRed "Access to $($params.path)\$($params.key) denied"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
catch {
|
catch {
|
||||||
Write-Host -ForegroundColor Red "error"
|
Write-Host -ForegroundColor Red -NoNewLine "Error in DelRegKey`n`t"
|
||||||
Write-Host "`t$Error[0]"
|
Write-Host -ForegounndColor DarkRed $Error[0].Exception.Message
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
Write-host -ForegroundColor Green "done"
|
Write-host -ForegroundColor Green "done"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Function to remove shitty prog from shitty win
|
function DisableFeature {
|
||||||
# Params :
|
param (
|
||||||
# $name : Feature name
|
[cmdletbinding(
|
||||||
function disable_shitty_feature {
|
DefaultParameterSetName='params'
|
||||||
param ($name)
|
)]
|
||||||
Write-Host -NoNewline "`t$name : "
|
[Parameter(
|
||||||
$requestInstall = dism /online /Get-FeatureInfo /FeatureName:$name /English
|
ValueFromPipeline=$False,
|
||||||
$isInstalled = $requestInstall | Select-String "state"
|
ParameterSetName="params",
|
||||||
If ($isInstalled -match "Enable") {
|
Position = 0
|
||||||
|
)]
|
||||||
|
[object]$params,
|
||||||
|
|
||||||
|
[Parameter(
|
||||||
|
ValueFromPipeline=$True,
|
||||||
|
ParameterSetName="feature",
|
||||||
|
Position = 0
|
||||||
|
)]
|
||||||
|
[Object]$feature
|
||||||
|
)
|
||||||
|
if ( $params.file ) {
|
||||||
|
Get-Content $params.file | foreach {
|
||||||
|
DisableFeature -feature $(dism /online /Get-FeatureInfo /FeatureName:$_ /English)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elseif ( $params.name ) {
|
||||||
|
$(dism /online /Get-FeatureInfo /FeatureName:$($params.name) /English) | DisableFeature
|
||||||
|
}
|
||||||
|
elseif ( $feature ) {
|
||||||
try {
|
try {
|
||||||
|
$name = $feature | Select-String "Feature Name" | %{($_ -split " : ")[1]}
|
||||||
|
Write-Host -NoNewline "`tDisable Feature $name : "
|
||||||
|
if ( $($feature | Select-String "state") -match "Disable" ){
|
||||||
|
Write-Host -ForegroundColor Yellow "already disable"
|
||||||
|
return
|
||||||
|
}
|
||||||
Dism /online /Disable-Feature /FeatureName:$name /NoRestart | Out-Null
|
Dism /online /Disable-Feature /FeatureName:$name /NoRestart | Out-Null
|
||||||
|
Write-Host -ForegroundColor Green "done"
|
||||||
}
|
}
|
||||||
catch {
|
catch {
|
||||||
Write-Host -ForegroundColor Red "error"
|
Write-Host -ForegroundColor Red "error"
|
||||||
Return
|
Return
|
||||||
}
|
}
|
||||||
Write-Host -ForegroundColor Green "done"
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host -ForegroundColor Yellow "already disable"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# remove unwanted "Modern App"
|
|
||||||
# Params
|
|
||||||
#
|
|
||||||
function UninstallModernApp {
|
function UninstallModernApp {
|
||||||
param(
|
param(
|
||||||
[cmdletbinding(
|
[cmdletbinding(
|
||||||
|
@ -270,29 +283,63 @@ function UninstallModernProvisonnedApp {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function disable_shitty_service {
|
function DisableService {
|
||||||
param([string]$name)
|
param (
|
||||||
Write-Host -NoNewline "`t$name : "
|
[cmdletbinding(
|
||||||
$serv = Get-Service -name $name
|
DefaultParameterSetName='params'
|
||||||
if ( !$serv) {
|
)]
|
||||||
Write-Host -ForegroundColor Red "not found"
|
[Parameter(
|
||||||
return
|
ValueFromPipeline=$False,
|
||||||
|
ParameterSetName="params",
|
||||||
|
Position = 0
|
||||||
|
)]
|
||||||
|
[object]$params,
|
||||||
|
|
||||||
|
[Parameter(
|
||||||
|
ValueFromPipeline=$True,
|
||||||
|
ParameterSetName="service"
|
||||||
|
)]
|
||||||
|
[Object]$service
|
||||||
|
)
|
||||||
|
if ( $params.file ) {
|
||||||
|
Get-Service | Where-Object { $_.name -in $( Get-Content $params.file ) } | Foreach {
|
||||||
|
$_ | DisableService
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ( $serv.StartType -eq "Disable") {
|
elseif ( $params.name ) {
|
||||||
Write-Host -ForegroundColor Yellow "already disabled"
|
DisableService-service $(Get-Service -name $params.name)
|
||||||
}
|
}
|
||||||
else {
|
elseif ( $service ) {
|
||||||
Stop-Service -InputObject $serv -PassThru | Set-Service -StartupType disabled
|
try {
|
||||||
Write-Host -ForegroundColor Green "done "
|
Write-Host -NoNewline "`tDisable service $($service.name) : "
|
||||||
|
if ( $service.StartType -eq "Disable") {
|
||||||
|
Write-Host -ForegroundColor Yellow "already disabled"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
Stop-Service -InputObject $service -PassThru | Set-Service -StartupType disabled
|
||||||
|
Write-Host -ForegroundColor Green "done "
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
Write-Host -NoNewLine -ForegroundColor Red "`tError in DisableService`n`t"
|
||||||
|
write-Host -ForegroundColor DarkRed $Error[0].Exception.Message
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Kill a process
|
function KillProcess {
|
||||||
# Param :
|
param(
|
||||||
# $process : name of process to kill (String)
|
[cmdletbinding(
|
||||||
function kill_shitty_process {
|
DefaultParameterSetName='params'
|
||||||
param([string]$process)
|
)]
|
||||||
Write-Host -NoNewLine "`tKilling $process : "
|
[Parameter(
|
||||||
|
ValueFromPipeline=$False,
|
||||||
|
ParameterSetName="params",
|
||||||
|
Position = 0
|
||||||
|
)]
|
||||||
|
[object]$params
|
||||||
|
)
|
||||||
|
Write-Host -NoNewLine "`tKilling $($params.name) : "
|
||||||
try {
|
try {
|
||||||
$p = Get-Process $process
|
$p = Get-Process $process
|
||||||
Stop-Process $p | Out-Null
|
Stop-Process $p | Out-Null
|
||||||
|
@ -303,8 +350,91 @@ function kill_shitty_process {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Output "`nI's time to kick ass and chew bubble gum"
|
function DelFile {
|
||||||
Write-Output "________________________________________`n"
|
param (
|
||||||
|
[cmdletbinding(
|
||||||
|
DefaultParameterSetName='params'
|
||||||
|
)]
|
||||||
|
[Parameter(
|
||||||
|
ValueFromPipeline=$False,
|
||||||
|
ParameterSetName="params",
|
||||||
|
Position = 0
|
||||||
|
)]
|
||||||
|
[object]$params
|
||||||
|
)
|
||||||
|
$path = Invoke-Expression """$($params.path)"""
|
||||||
|
Write-Host -NoNewline "`tDelete $path : "
|
||||||
|
if ( -not (Test-Path $path) ){
|
||||||
|
Write-Host -ForegroundColor Yellow "not found"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
$command = "Remove-Item $command -ErrorAction SilentlyContinue -Force -Path `"$path`""
|
||||||
|
if ( $params.recurse -eq $true ) {
|
||||||
|
$command += "-Recurse"
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
Invoke-Expression $command
|
||||||
|
Write-Host -ForegroundColor Green "done"
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
Write-Host -NoNewLine -ForegroundColor Red "`Error in DelFile`n`t"
|
||||||
|
write-Host -ForegroundColor DarkRed $Error[0].Exception.Message
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function ExecCommand {
|
||||||
|
param (
|
||||||
|
[cmdletbinding(
|
||||||
|
DefaultParameterSetName='params'
|
||||||
|
)]
|
||||||
|
[Parameter(
|
||||||
|
ValueFromPipeline=$False,
|
||||||
|
ParameterSetName="params",
|
||||||
|
Position = 0
|
||||||
|
)]
|
||||||
|
[object]$params
|
||||||
|
)
|
||||||
|
Write-Host -NoNewline "`tExecute : $($params.path) : "
|
||||||
|
if ( -not (Test-Path $params.path) ) {
|
||||||
|
Write-Host -ForegroundColor Yellow "File not found"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
Start-Process $params.path -ArgumentList $params.arguments
|
||||||
|
Write-Host -ForegroundColor Green "done"
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
Write-Host -NoNewLine -ForegroundColor Red "`Error in DelFile`n`t"
|
||||||
|
write-Host -ForegroundColor DarkRed $Error[0].Exception.Message
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Output "`nIt's time to kick ass and chew bubble gum"
|
||||||
|
Write-Output "_________________________________________`n"
|
||||||
|
|
||||||
|
try {
|
||||||
|
Write-Host -NoNewline "Mount Default user registery hive : "
|
||||||
|
reg load "hku\Default" "C:\Users\Default\NTUSER.DAT" | Out-Null
|
||||||
|
New-PSDrive -PSProvider Registry -Root HKEY_USERS -Name HKU | Out-Null
|
||||||
|
Write-Host -ForegroundColor Green "done"
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
Write-Host -NoNewline -ForegroundColor Red "Error`n`t"
|
||||||
|
Write-Host -ForegroundColor DarkRed $Error[0].Exception.Message
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Write-Host -NoNewline "Mount HK_CLASSES_ROOT registery hive : "
|
||||||
|
New-PSDrive -PSProvider Registry -Root HKEY_CLASSES_ROOT -Name HKCR | Out-Null
|
||||||
|
Write-Host -ForegroundColor Green "done"
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
Write-Host -NoNewline -ForegroundColor Red "Error`n`t"
|
||||||
|
Write-Host -ForegroundColor DarkRed $Error[0].Exception.Message
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
Get-ChildItem -Path $PSScriptRoot"\modules.d" -Filter "*.conf" | foreach {
|
Get-ChildItem -Path $PSScriptRoot"\modules.d" -Filter "*.conf" | foreach {
|
||||||
$module = ""
|
$module = ""
|
||||||
|
@ -315,7 +445,7 @@ Get-ChildItem -Path $PSScriptRoot"\modules.d" -Filter "*.conf" | foreach {
|
||||||
$module.actions | Foreach {
|
$module.actions | Foreach {
|
||||||
$action_file = ""
|
$action_file = ""
|
||||||
$current_action = $_
|
$current_action = $_
|
||||||
# If action content a file element, nedd to test if file exist
|
# If action content a file element, need to test if file exist
|
||||||
if ( $_.file) {
|
if ( $_.file) {
|
||||||
$action_file = $module_dir + $_.file
|
$action_file = $module_dir + $_.file
|
||||||
if ( -not (Test-Path $action_file) ) {
|
if ( -not (Test-Path $action_file) ) {
|
||||||
|
@ -325,6 +455,6 @@ Get-ChildItem -Path $PSScriptRoot"\modules.d" -Filter "*.conf" | foreach {
|
||||||
$_.file = $action_file
|
$_.file = $action_file
|
||||||
}
|
}
|
||||||
# Invoke function
|
# Invoke function
|
||||||
Invoke-Expression "$($_.action) -params `$_"
|
Invoke-Expression "$($_.action) `$_"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
4
modules.d/DisableFeatures/features.txt
Normal file
4
modules.d/DisableFeatures/features.txt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Internet-Explorer-Optional-amd64
|
||||||
|
FaxServicesClientPackage
|
||||||
|
WindowsMediaPlayer
|
||||||
|
MediaPlayback
|
28
modules.d/DisableGeolocation.conf
Normal file
28
modules.d/DisableGeolocation.conf
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name" : "Disable Geolocation",
|
||||||
|
"description" : "Disable GeoLocation",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\LocationAndSensors",
|
||||||
|
"key" : "DisableLocation",
|
||||||
|
"value" : "1",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\LocationAndSensors",
|
||||||
|
"key" : "DisableLocationScripting",
|
||||||
|
"value" : "1",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\LocationAndSensors",
|
||||||
|
"key" : "DisableWindowsLocationProvider",
|
||||||
|
"value" : "1",
|
||||||
|
"type" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
4
modules.d/DisableServices/features.txt
Normal file
4
modules.d/DisableServices/features.txt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Internet-Explorer-Optional-amd64
|
||||||
|
FaxServicesClientPackage
|
||||||
|
WindowsMediaPlayer
|
||||||
|
MediaPlayback
|
17
modules.d/DisableServices/services.txt
Normal file
17
modules.d/DisableServices/services.txt
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
diagnosticshub.standardcollector.service
|
||||||
|
DiagTrack
|
||||||
|
dmwappushservice
|
||||||
|
HomeGroupListener
|
||||||
|
HomeGroupProvider
|
||||||
|
lfsvc
|
||||||
|
MapsBroker
|
||||||
|
NetTcpPortSharing
|
||||||
|
RemoteAccess
|
||||||
|
RemoteRegistry
|
||||||
|
SharedAccess
|
||||||
|
TrkWks
|
||||||
|
WbioSrvc
|
||||||
|
WMPNetworkSvc
|
||||||
|
XblAuthManager
|
||||||
|
XblGameSave
|
||||||
|
XboxNetApiSvc
|
22
modules.d/DisableSmartScreen.conf
Normal file
22
modules.d/DisableSmartScreen.conf
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"name" : "Disable Smartscreen",
|
||||||
|
"description" : "Disable Smartscreen protection for Edge / IE",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"path" : "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppHost",
|
||||||
|
"key" : "EnableWebContentEvaluation",
|
||||||
|
"value" : "0",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_comment" : "EXPERIMENTAL Disable Smartscreen for new created Users",
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"path" : "HKU:\\Default\\Microsoft\\Windows\\CurrentVersion\\AppHost",
|
||||||
|
"key" : "EnableWebContentEvaluation",
|
||||||
|
"value" : "0",
|
||||||
|
"type" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
83
modules.d/UninstallOnedrive.conf
Normal file
83
modules.d/UninstallOnedrive.conf
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
{
|
||||||
|
"name" : "Uninstall One Drive",
|
||||||
|
"description" : "This module Uninstall Onedrive",
|
||||||
|
"actions" : [
|
||||||
|
{
|
||||||
|
"action" : "KillProcess",
|
||||||
|
"name" : "onedrive"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "KillProcess",
|
||||||
|
"name" : "git"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_comment" : "OneDrive Uninstaller x64 version",
|
||||||
|
"action" : "ExecCommand",
|
||||||
|
"path" : "$env:systemroot\\SysWOW64\\OneDriveSetup.exe",
|
||||||
|
"arguments" : "/uninstall"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_comment" : "OneDrive Uninstaller x86 version",
|
||||||
|
"action" : "ExecCommand",
|
||||||
|
"path" : "$env:systemroot\\System32\\OneDriveSetup.exe",
|
||||||
|
"arguments" : "/uninstall"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "DelFile",
|
||||||
|
"path" : "$env:localappdata\\Microsoft\\OneDrive",
|
||||||
|
"recurse" : "True"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "DelFile",
|
||||||
|
"path" : "$env:programdata\\Microsoft OneDrive",
|
||||||
|
"recurse" : "True"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "DelFile",
|
||||||
|
"path" : "$env:systemdrive\\OneDriveTemp",
|
||||||
|
"recurse" : "True"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"value" : "1",
|
||||||
|
"key" : "DisableFileSyncNGSC",
|
||||||
|
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\OneDrive",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"value" : "1",
|
||||||
|
"key" : "DisableFileSync",
|
||||||
|
"path" : "HKLM:\\Software\\Policies\\Microsoft\\Windows\\OneDrive",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"value" : "0300000021B9DEB396D7D001",
|
||||||
|
"key" : "OneDrive",
|
||||||
|
"path" : "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\StartupApproved\\Run",
|
||||||
|
"type" : "Binary"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"value" : "0",
|
||||||
|
"key" : "System.IsPinnedToNameSpaceTree",
|
||||||
|
"path" : "HKCR:\\Wow6432Node\\CLSID\\{018D5C66-4533-4307-9B53-224DE2ED1FE6}",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action" : "AddRegKey",
|
||||||
|
"value" : "0",
|
||||||
|
"key" : "System.IsPinnedToNameSpaceTree",
|
||||||
|
"path" : "HKCR:\\CLSID\\{018D5C66-4533-4307-9B53-224DE2ED1FE6}",
|
||||||
|
"type" : ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_comment" : "Prevent Onedrive installation for new created user",
|
||||||
|
"action" : "DelRegKey",
|
||||||
|
"key" : "OneDriveSetup",
|
||||||
|
"path" : "HKU:\\Default\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
11
modules.d/disable/DisableFeatures.conf
Normal file
11
modules.d/disable/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/disable/DisableServices.conf
Normal file
11
modules.d/disable/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" : ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Reference in a new issue