Added the ability to disable lockscreen tips & tricks, and various other tips & tricks accross windows 10

This commit is contained in:
Raphire
2020-11-06 12:48:13 +01:00
parent aab7cd60e4
commit 79af68e444
6 changed files with 20 additions and 0 deletions

View File

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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

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