mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2025-11-17 02:56:17 +00:00
Added the ability to disable lockscreen tips & tricks, and various other tips & tricks accross windows 10
This commit is contained in:
@@ -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).
|
- 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.
|
- Hide the 3D objects folder under 'This pc' in windows explorer.
|
||||||
- Disable bing in windows search.
|
- 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 'Include in library' from context menu.
|
||||||
- Disable the 'Give access to' from context menu.
|
- Disable the 'Give access to' from context menu.
|
||||||
- Disable the 'Share' 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 3D objects folder under 'This pc' in windows explorer.
|
||||||
- Hide the music folder under 'This pc' in windows explorer.
|
- Hide the music folder under 'This pc' in windows explorer.
|
||||||
- Disable bing in windows search.
|
- 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 'Include in library' from context menu.
|
||||||
- Disable the 'Give access to' from context menu.
|
- Disable the 'Give access to' from context menu.
|
||||||
- Disable the 'Share' from context menu.
|
- Disable the 'Share' from context menu.
|
||||||
|
|||||||
BIN
Regfiles/Disable_Lockscreen_Tips.reg
Normal file
BIN
Regfiles/Disable_Lockscreen_Tips.reg
Normal file
Binary file not shown.
BIN
Regfiles/Disable_Windows_Suggestions.reg
Normal file
BIN
Regfiles/Disable_Windows_Suggestions.reg
Normal file
Binary file not shown.
BIN
Regfiles/Enable_Lockscreen_Tips.reg
Normal file
BIN
Regfiles/Enable_Lockscreen_Tips.reg
Normal file
Binary file not shown.
BIN
Regfiles/Enable_Windows_Suggestions.reg
Normal file
BIN
Regfiles/Enable_Windows_Suggestions.reg
Normal file
Binary file not shown.
@@ -29,6 +29,10 @@ elseif ($script_mode -eq '2') {
|
|||||||
|
|
||||||
$disable_bing_searches = Read-Host "Disable bing in windows search? (y/n)"
|
$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)"
|
$disable_context = Read-Host "Disable the contextmenu entries for: Share, Give access to and Include in library? (y/n)"
|
||||||
|
|
||||||
Write-Output ""
|
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
|
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') {
|
if ($disable_context -eq 'y' -or $script_mode -eq '1') {
|
||||||
Write-Output "> Disabling contextmenu entries for: Share, Include in library & Give access..."
|
Write-Output "> Disabling contextmenu entries for: Share, Include in library & Give access..."
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user