diff --git a/Menus/DefaultSettings.txt b/Menus/DefaultSettings.txt index 4bedd4d..6b6dd59 100644 --- a/Menus/DefaultSettings.txt +++ b/Menus/DefaultSettings.txt @@ -3,7 +3,7 @@ ------------------------------------------------------------------------------------------- Win11Debloat will make the following changes: - Remove bloatware apps. -- Disable telemetry, diagnostic data & targeted ads. +- Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable bing search & cortana in windows search. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable tips, tricks and suggestions in the start menu and settings, and ads in windows explorer. diff --git a/Menus/Info.txt b/Menus/Info.txt index 69efe3e..e9582e4 100644 --- a/Menus/Info.txt +++ b/Menus/Info.txt @@ -10,7 +10,7 @@ painstakingly go through all the settings yourself, or removing apps one by one! Using the default configuration the script will ------------------------------------------------------------------------------------------- - Remove bloatware apps, the list can be found in the 'Appslist.txt' file. -- Disable telemetry, diagnostic data & targeted ads. +- Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable bing search & cortana in windows search. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable tips, tricks and suggestions in the start menu and settings, and ads in windows explorer. @@ -24,7 +24,7 @@ painstakingly go through all the settings yourself, or removing apps one by one! ------------------------------------------------------------------------------------------- - Remove bloatware apps, the list can be found in the 'Appslist.txt' file. - Remove gaming-related apps, the list can be found in the 'GamingAppslist.txt' file. -- Disable telemetry, diagnostic data & targeted ads. +- Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable bing search & cortana in windows search. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable tips, tricks and suggestions in the start menu and settings, and ads in windows explorer. diff --git a/README.md b/README.md index 219aab5..17f982c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ You can pick and choose exactly which modifications you want the script to make, ## Selecting the default settings will - Remove all bloatware apps from [this list](#click-for-list-of-bloat-that-is-removed). -- Disable telemetry, diagnostic data & targeted ads. +- Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable bing search & cortana in windows search. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable tips, tricks and suggestions in the start menu and settings, and sync provider ads in windows explorer. @@ -26,7 +26,7 @@ Give you access to even more options and allow you to customize the script to yo In this mode you'll be able to make any of the following changes: - Remove all bloatware apps from [this list](#click-for-list-of-bloat-that-is-removed) and optionally also remove gaming-related apps. -- Disable telemetry, diagnostic data & targeted ads. +- Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable bing search, bing AI & cortana in windows search. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable tips, tricks and suggestions in the start menu and settings, and sync provider ads in windows explorer. diff --git a/Regfiles/Disable_App_Launch_Tracking_For_All_Users.reg b/Regfiles/Disable_App_Launch_Tracking_For_All_Users.reg new file mode 100644 index 0000000..a6b428c Binary files /dev/null and b/Regfiles/Disable_App_Launch_Tracking_For_All_Users.reg differ diff --git a/Regfiles/Disable_Bing_Cortana_In_Search.reg b/Regfiles/Disable_Bing_Cortana_In_Search.reg index 27f9045..f605c6b 100644 Binary files a/Regfiles/Disable_Bing_Cortana_In_Search.reg and b/Regfiles/Disable_Bing_Cortana_In_Search.reg differ diff --git a/Regfiles/Disable_Telemetry.reg b/Regfiles/Disable_Telemetry.reg index ea1a6ff..ca356fd 100644 Binary files a/Regfiles/Disable_Telemetry.reg and b/Regfiles/Disable_Telemetry.reg differ diff --git a/Regfiles/Disable_Windows_Suggestions.reg b/Regfiles/Disable_Windows_Suggestions.reg index 74121a3..0739fa2 100644 Binary files a/Regfiles/Disable_Windows_Suggestions.reg and b/Regfiles/Disable_Windows_Suggestions.reg differ diff --git a/Regfiles/Undo/Enable_App_Launch_Tracking_For_All_Users.reg b/Regfiles/Undo/Enable_App_Launch_Tracking_For_All_Users.reg new file mode 100644 index 0000000..a90cf78 Binary files /dev/null and b/Regfiles/Undo/Enable_App_Launch_Tracking_For_All_Users.reg differ diff --git a/Regfiles/Undo/Enable_Bing_Cortana_In_Search.reg b/Regfiles/Undo/Enable_Bing_Cortana_In_Search.reg index 9434d75..fba80d8 100644 Binary files a/Regfiles/Undo/Enable_Bing_Cortana_In_Search.reg and b/Regfiles/Undo/Enable_Bing_Cortana_In_Search.reg differ diff --git a/Regfiles/Undo/Enable_Telemetry.reg b/Regfiles/Undo/Enable_Telemetry.reg index 2c05f51..f510216 100644 Binary files a/Regfiles/Undo/Enable_Telemetry.reg and b/Regfiles/Undo/Enable_Telemetry.reg differ diff --git a/Regfiles/Undo/Enable_Windows_Suggestions.reg b/Regfiles/Undo/Enable_Windows_Suggestions.reg index d540b0f..9400f2d 100644 Binary files a/Regfiles/Undo/Enable_Windows_Suggestions.reg and b/Regfiles/Undo/Enable_Windows_Suggestions.reg differ diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 7f06acf..308c733 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -175,7 +175,7 @@ if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or ( Write-Output "" - if ($( Read-Host -Prompt "Disable telemetry, diagnostic data and targeted ads? (y/n)" ) -eq 'y') { + if ($( Read-Host -Prompt "Disable telemetry, diagnostic data, app-launch tracking and targeted ads? (y/n)" ) -eq 'y') { $PSBoundParameters.Add('DisableTelemetry', $DisableTelemetry) } @@ -356,16 +356,11 @@ switch ($PSBoundParameters.Keys) { continue } 'DisableTelemetry' { - RegImport "> Disabling telemetry, diagnostic data and targeted ads..." $PSScriptRoot\Regfiles\Disable_Telemetry.reg + RegImport "> Disabling telemetry, diagnostic data, app-launch tracking and targeted ads..." $PSScriptRoot\Regfiles\Disable_Telemetry.reg Write-Output "" continue } - 'DisableBingSearches' { - RegImport "> Disabling bing search, bing AI & cortana in windows search..." $PSScriptRoot\Regfiles\Disable_Bing_Cortana_In_Search.reg - Write-Output "" - continue - } - 'DisableBing' { + {$_ -in "DisableBingSearches", "DisableBing"} { RegImport "> Disabling bing search, bing AI & cortana in windows search..." $PSScriptRoot\Regfiles\Disable_Bing_Cortana_In_Search.reg Write-Output "" continue