mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-08-23 08:02:07 +00:00
Disabling telemetry now also disables app-launch tracking
Disabling windows suggestions now also disables start recommendations in windows 11
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
-------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------
|
||||||
Win11Debloat will make the following changes:
|
Win11Debloat will make the following changes:
|
||||||
- Remove bloatware apps.
|
- 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 bing search & cortana in windows search.
|
||||||
- Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper)
|
- 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.
|
- Disable tips, tricks and suggestions in the start menu and settings, and ads in windows explorer.
|
||||||
|
|||||||
+2
-2
@@ -10,7 +10,7 @@ painstakingly go through all the settings yourself, or removing apps one by one!
|
|||||||
Using the default configuration the script will
|
Using the default configuration the script will
|
||||||
-------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------
|
||||||
- Remove bloatware apps, the list can be found in the 'Appslist.txt' file.
|
- 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 bing search & cortana in windows search.
|
||||||
- Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper)
|
- 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.
|
- 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 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.
|
- 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 bing search & cortana in windows search.
|
||||||
- Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper)
|
- 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.
|
- Disable tips, tricks and suggestions in the start menu and settings, and ads in windows explorer.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ You can pick and choose exactly which modifications you want the script to make,
|
|||||||
## Selecting the default settings will
|
## Selecting the default settings will
|
||||||
|
|
||||||
- Remove all bloatware apps from [this list](#click-for-list-of-bloat-that-is-removed).
|
- 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 bing search & cortana in windows search.
|
||||||
- Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper)
|
- 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.
|
- 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:
|
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.
|
- 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 bing search, bing AI & cortana in windows search.
|
||||||
- Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper)
|
- 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.
|
- 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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3
-8
@@ -175,7 +175,7 @@ if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or (
|
|||||||
|
|
||||||
Write-Output ""
|
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)
|
$PSBoundParameters.Add('DisableTelemetry', $DisableTelemetry)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -356,16 +356,11 @@ switch ($PSBoundParameters.Keys) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'DisableTelemetry' {
|
'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 ""
|
Write-Output ""
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'DisableBingSearches' {
|
{$_ -in "DisableBingSearches", "DisableBing"} {
|
||||||
RegImport "> Disabling bing search, bing AI & cortana in windows search..." $PSScriptRoot\Regfiles\Disable_Bing_Cortana_In_Search.reg
|
|
||||||
Write-Output ""
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
'DisableBing' {
|
|
||||||
RegImport "> Disabling bing search, bing AI & cortana in windows search..." $PSScriptRoot\Regfiles\Disable_Bing_Cortana_In_Search.reg
|
RegImport "> Disabling bing search, bing AI & cortana in windows search..." $PSScriptRoot\Regfiles\Disable_Bing_Cortana_In_Search.reg
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user