diff --git a/Assets/Menus/DefaultSettings b/Assets/Menus/DefaultSettings index 180e7f5..5f9fd9d 100644 --- a/Assets/Menus/DefaultSettings +++ b/Assets/Menus/DefaultSettings @@ -2,7 +2,7 @@ Win11Debloat will make the following changes: - Remove the default selection of apps, the list can be found in the 'Appslist.txt' file. - Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable tips, tricks, suggestions and ads in start, settings, notifications and more. -- Disable ads and the MSN news feed in Microsoft Edge. +- Disable ads, suggestions and the MSN news feed in Microsoft Edge. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Microsoft Copilot. (W11 only) diff --git a/Assets/Menus/Info b/Assets/Menus/Info index 63831a8..c583c53 100644 --- a/Assets/Menus/Info +++ b/Assets/Menus/Info @@ -12,7 +12,7 @@ App Removal Telemetry, Tracking & Suggested Content - Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. - Disable tips, tricks, suggestions & ads across Windows. -- Disable ads and the MSN news feed in Microsoft Edge. +- Disable ads, suggestions and the MSN news feed in Microsoft Edge. - Disable the 'Windows Spotlight' desktop background option. Bing Web Search, Copilot & AI Features @@ -65,7 +65,7 @@ The default mode applies the changes that are recommended for most users. This i - Remove the default selection of apps, the list can be found in the 'Appslist.txt' file. - Disable telemetry, diagnostic data, app-launch tracking & targeted ads. - Disable tips, tricks, suggestions and ads in start, settings, notifications and more. -- Disable ads and the MSN news feed in Microsoft Edge. +- Disable ads, suggestions and the MSN news feed in Microsoft Edge. - Disable tips & tricks on the lockscreen. (This may change your lockscreen wallpaper) - Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Microsoft Copilot. (W11 only) diff --git a/README.md b/README.md index acd1813..6f9238f 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ Win11Debloat offers a default mode that allows you to quickly and easily apply t - Remove the default selection of bloatware apps. (See below for full list) - Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. - Disable tips, tricks, suggestions and ads in start, settings, notifications, File Explorer, and on the lockscreen. -- Disable ads and the MSN news feed in Microsoft Edge. +- Disable ads, suggestions and the MSN news feed in Microsoft Edge. - Disable & remove Bing web search, Bing AI and Cortana from Windows search. - Disable & remove Microsoft Copilot. (W11 only) - Disable Fast Start-up to ensure a full shutdown. diff --git a/Regfiles/Disable_Edge_Ads_And_Suggestions.reg b/Regfiles/Disable_Edge_Ads_And_Suggestions.reg index f0e6c54..e23247e 100644 Binary files a/Regfiles/Disable_Edge_Ads_And_Suggestions.reg and b/Regfiles/Disable_Edge_Ads_And_Suggestions.reg differ diff --git a/Regfiles/Sysprep/Disable_Edge_Ads_And_Suggestions.reg b/Regfiles/Sysprep/Disable_Edge_Ads_And_Suggestions.reg index f0e6c54..e23247e 100644 Binary files a/Regfiles/Sysprep/Disable_Edge_Ads_And_Suggestions.reg and b/Regfiles/Sysprep/Disable_Edge_Ads_And_Suggestions.reg differ diff --git a/Regfiles/Undo/Enable_Edge_Ads_And_Suggestions.reg b/Regfiles/Undo/Enable_Edge_Ads_And_Suggestions.reg index 5b07ad7..4056a19 100644 Binary files a/Regfiles/Undo/Enable_Edge_Ads_And_Suggestions.reg and b/Regfiles/Undo/Enable_Edge_Ads_And_Suggestions.reg differ diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 57b699e..32ac186 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -467,7 +467,7 @@ function ForceRemoveEdge { $hklm = [Microsoft.Win32.RegistryKey]::OpenBaseKey([Microsoft.Win32.RegistryHive]::LocalMachine, $regView) $hklm.CreateSubKey('SOFTWARE\Microsoft\EdgeUpdateDev').SetValue('AllowUninstall', '') - # Create stub (Creating this somehow allows uninstalling edge) + # Create stub (Creating this somehow allows uninstalling Edge) $edgeStub = "$env:SystemRoot\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe" New-Item $edgeStub -ItemType Directory | Out-Null New-Item "$edgeStub\MicrosoftEdge.exe" | Out-Null @@ -500,7 +500,7 @@ function ForceRemoveEdge { Write-Output "Cleaning up registry..." - # Remove ms edge from autostart + # Remove MS Edge from autostart reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "MicrosoftEdgeAutoLaunch_A9F6DCE4ABADF4F51CF45CD7129E3C6C" /f *>$null reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "Microsoft Edge Update" /f *>$null reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "MicrosoftEdgeAutoLaunch_A9F6DCE4ABADF4F51CF45CD7129E3C6C" /f *>$null @@ -973,9 +973,9 @@ function DisplayCustomModeOptions { Write-Output "" - if ($( Read-Host -Prompt "Disable tips, tricks, suggestions and ads in start, settings, notifications, explorer, lockscreen and edge? (y/n)" ) -eq 'y') { + if ($( Read-Host -Prompt "Disable tips, tricks, suggestions and ads in start, settings, notifications, explorer, lockscreen and Edge? (y/n)" ) -eq 'y') { AddParameter 'DisableSuggestions' 'Disable tips, tricks, suggestions and ads in start, settings, notifications and File Explorer' - AddParameter 'DisableEdgeAds' 'Disable ads and the MSN news feed in Microsoft Edge' + AddParameter 'DisableEdgeAds' 'Disable ads, suggestions and the MSN news feed in Microsoft Edge' AddParameter 'DisableSettings365Ads' 'Disable Microsoft 365 ads in Settings Home' AddParameter 'DisableLockscreenTips' 'Disable tips & tricks on the lockscreen' } @@ -1668,7 +1668,7 @@ switch ($script:Params.Keys) { continue } 'DisableEdgeAds' { - RegImport "> Disabling ads and the MSN news feed in Microsoft Edge..." "Disable_Edge_Ads_And_Suggestions.reg" + RegImport "> Disabling ads, suggestions and the MSN news feed in Microsoft Edge..." "Disable_Edge_Ads_And_Suggestions.reg" continue } {$_ -in "DisableLockscrTips", "DisableLockscreenTips"} {