Disabling telemetry now also disables app-launch tracking

Disabling windows suggestions now also disables start recommendations in windows 11
This commit is contained in:
Raphire
2023-08-07 01:23:55 +02:00
parent 12963ebd3e
commit a143b4e71a
12 changed files with 8 additions and 13 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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