diff --git a/README.md b/README.md index b1a8b21..b2c807e 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ You can pick and choose which modifications you want the script to make, but the - Remove all bloatware apps from [this list](#these-apps-will-be-deleted-by-default). - Hide the 3D objects folder under 'This pc' in windows explorer. - Disable bing in windows search. +- Disable tips & tricks on the lockscreen. (This changes your lockscreen wallpaper to the windows default) +- Disable tips, tricks and suggestions in the startmenu and settings. - Disable the 'Include in library' from context menu. - Disable the 'Give access to' from context menu. - Disable the 'Share' from context menu. @@ -73,6 +75,8 @@ This script can also make various changes to declutter windows 10, such as: - Hide the 3D objects folder under 'This pc' in windows explorer. - Hide the music folder under 'This pc' in windows explorer. - Disable bing in windows search. +- Disable tips & tricks on the lockscreen. (This changes your lockscreen wallpaper to the windows default) +- Disable tips, tricks and suggestions in the startmenu and settings. - Disable the 'Include in library' from context menu. - Disable the 'Give access to' from context menu. - Disable the 'Share' from context menu. diff --git a/Regfiles/Disable_Lockscreen_Tips.reg b/Regfiles/Disable_Lockscreen_Tips.reg new file mode 100644 index 0000000..0f825c0 Binary files /dev/null and b/Regfiles/Disable_Lockscreen_Tips.reg differ diff --git a/Regfiles/Disable_Windows_Suggestions.reg b/Regfiles/Disable_Windows_Suggestions.reg new file mode 100644 index 0000000..0fe6420 Binary files /dev/null and b/Regfiles/Disable_Windows_Suggestions.reg differ diff --git a/Regfiles/Enable_Lockscreen_Tips.reg b/Regfiles/Enable_Lockscreen_Tips.reg new file mode 100644 index 0000000..fb334ef Binary files /dev/null and b/Regfiles/Enable_Lockscreen_Tips.reg differ diff --git a/Regfiles/Enable_Windows_Suggestions.reg b/Regfiles/Enable_Windows_Suggestions.reg new file mode 100644 index 0000000..dab3e21 Binary files /dev/null and b/Regfiles/Enable_Windows_Suggestions.reg differ diff --git a/Win10Debloat.ps1 b/Win10Debloat.ps1 index 5538697..54077dc 100644 --- a/Win10Debloat.ps1 +++ b/Win10Debloat.ps1 @@ -29,6 +29,10 @@ elseif ($script_mode -eq '2') { $disable_bing_searches = Read-Host "Disable bing in windows search? (y/n)" + $disable_lockscreen_tips = Read-Host "Disable tips & tricks on the lockscreen? (y/n)" + + $disable_windows_suggestions = Read-Host "Disable tips, tricks and suggestions in the startmenu and settings? (y/n)" + $disable_context = Read-Host "Disable the contextmenu entries for: Share, Give access to and Include in library? (y/n)" Write-Output "" @@ -125,6 +129,18 @@ if ($disable_bing_searches -eq 'y' -or $script_mode -eq '1') { regedit /s $PSScriptRoot\Regfiles\Disable_Bing_Searches.reg } +if ($disable_lockscreen_tips -eq 'y' -or $script_mode -eq '1') { + Write-Output "> Disabling tips & tricks on the lockscreen..." + + regedit /s $PSScriptRoot\Regfiles\Disable_Lockscreen_Tips.reg +} + +if ($disable_windows_suggestions -eq 'y' -or $script_mode -eq '1') { + Write-Output "> Disabling tips, tricks and suggestions in the startmenu and settings..." + + regedit /s $PSScriptRoot\Regfiles\Disable_Windows_Suggestions.reg +} + if ($disable_context -eq 'y' -or $script_mode -eq '1') { Write-Output "> Disabling contextmenu entries for: Share, Include in library & Give access..."