diff --git a/Appslist.txt b/Appslist.txt index 491d4aa..6da3576 100644 --- a/Appslist.txt +++ b/Appslist.txt @@ -48,6 +48,7 @@ *COOKINGFEVER* *CyberLinkMediaSuiteEssentials* *DisneyMagicKingdoms* +*Disney* *Dolby* *DrawboardPDF* *Duolingo-LearnLanguagesforFree* @@ -59,6 +60,7 @@ *HiddenCity* *HULULLC.HULUPLUS* *iHeartRadio* +*Instagram* *king.com.BubbleWitch3Saga* *king.com.CandyCrushSaga* *king.com.CandyCrushSodaSaga* @@ -78,6 +80,7 @@ *SlingTV* *Speed Test* *Spotify* +*TikTok* *TuneInRadio* *Twitter* *Viber* diff --git a/Menus/Info.txt b/Menus/Info.txt index e1ea76c..69efe3e 100644 --- a/Menus/Info.txt +++ b/Menus/Info.txt @@ -32,6 +32,7 @@ painstakingly go through all the settings yourself, or removing apps one by one! - Show file extensions for known file types. - Align taskbar icons to the left. (Windows 11 only) - Hide or change the search icon/box on the taskbar. (Windows 11 only) +- Hide the taskview button from the taskbar. - Disable the widget service & hide the widget (news and interests) icon from the taskbar. - Hide the Chat (meet now) icon from the taskbar. - Hide the 3D objects, music or onedrive folders in windows explorer. (Windows 10 only) diff --git a/README.md b/README.md index b481a3e..219aab5 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ In this mode you'll be able to make any of the following changes: - Show file extensions for known file types. - Align taskbar icons to the left. (Windows 11 only) - Hide or change the search icon/box on the taskbar. (Windows 11 only) +- Hide the taskview button from the taskbar. - Disable the widget service & hide the widget (news and interests) icon from the taskbar. - Hide the chat (meet now) icon from the taskbar. - Hide the 3D objects, music or onedrive folder in the windows explorer sidepanel. (Windows 10 only) @@ -149,6 +150,7 @@ By default, this script removes a large selection preinstalled bloatware, while - COOKINGFEVER - CyberLinkMediaSuiteEssentials - DisneyMagicKingdoms + - Disney - Dolby - DrawboardPDF - Duolingo-LearnLanguagesforFree @@ -160,6 +162,7 @@ By default, this script removes a large selection preinstalled bloatware, while - HiddenCity - HULULLC.HULUPLUS - iHeartRadio + - Instagram - king.com.BubbleWitch3Saga - king.com.CandyCrushSaga - king.com.CandyCrushSodaSaga @@ -179,6 +182,7 @@ By default, this script removes a large selection preinstalled bloatware, while - SlingTV - Speed Test - Spotify + - TikTok - TuneInRadio - Twitter - Viber diff --git a/Regfiles/Disable_Lockscreen_Tips.reg b/Regfiles/Disable_Lockscreen_Tips.reg index 24bfa17..a3be159 100644 Binary files a/Regfiles/Disable_Lockscreen_Tips.reg and b/Regfiles/Disable_Lockscreen_Tips.reg differ diff --git a/Regfiles/Disable_Windows_Suggestions.reg b/Regfiles/Disable_Windows_Suggestions.reg index 6861166..74121a3 100644 Binary files a/Regfiles/Disable_Windows_Suggestions.reg and b/Regfiles/Disable_Windows_Suggestions.reg differ diff --git a/Regfiles/Hide_Taskview_Taskbar.reg b/Regfiles/Hide_Taskview_Taskbar.reg new file mode 100644 index 0000000..e54b170 Binary files /dev/null and b/Regfiles/Hide_Taskview_Taskbar.reg differ diff --git a/Regfiles/Undo/Enable_Lockscreen_Tips.reg b/Regfiles/Undo/Enable_Lockscreen_Tips.reg index 41af535..7471a83 100644 Binary files a/Regfiles/Undo/Enable_Lockscreen_Tips.reg and b/Regfiles/Undo/Enable_Lockscreen_Tips.reg differ diff --git a/Regfiles/Undo/Enable_Windows_Suggestions.reg b/Regfiles/Undo/Enable_Windows_Suggestions.reg index 4e56713..d540b0f 100644 Binary files a/Regfiles/Undo/Enable_Windows_Suggestions.reg and b/Regfiles/Undo/Enable_Windows_Suggestions.reg differ diff --git a/Regfiles/Undo/Show_Taskview_Taskbar.reg b/Regfiles/Undo/Show_Taskview_Taskbar.reg new file mode 100644 index 0000000..9499fb0 Binary files /dev/null and b/Regfiles/Undo/Show_Taskview_Taskbar.reg differ diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index d07ed64..7f06acf 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -20,6 +20,7 @@ param [Parameter(ValueFromPipeline = $true)][switch]$ShowSearchIconTb, [Parameter(ValueFromPipeline = $true)][switch]$ShowSearchLabelTb, [Parameter(ValueFromPipeline = $true)][switch]$ShowSearchBoxTb, + [Parameter(ValueFromPipeline = $true)][switch]$HideTaskview, [Parameter(ValueFromPipeline = $true)][switch]$DisableWidgets, [Parameter(ValueFromPipeline = $true)][switch]$HideWidgets, [Parameter(ValueFromPipeline = $true)][switch]$DisableChat, @@ -88,7 +89,7 @@ function RegImport { } -# Change script mode based on provided parameters or user input +# Change script execution based on provided parameters or user input if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or (($PSBoundParameters.Count -eq 1) -and ($PSBoundParameters.ContainsKey('WhatIf') -or $PSBoundParameters.ContainsKey('Confirm') -or $PSBoundParameters.ContainsKey('Verbose')))) { if ($RunDefaults -or $RunWin11Defaults) { $Mode = '1'; @@ -207,6 +208,7 @@ if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or ( $PSBoundParameters.Add('TaskbarAlignLeft', $TaskbarAlignLeft) } + # Show options for search icon on taskbar, only continue on valid input Do { Write-Output "" Write-Output " Options:" @@ -233,7 +235,12 @@ if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or ( '4' { $PSBoundParameters.Add('ShowSearchBoxTb', $ShowSearchBoxTb) } + } + Write-Output "" + + if ($( Read-Host -Prompt " Hide the taskview button from the taskbar? (y/n)" ) -eq 'y') { + $PSBoundParameters.Add('HideTaskview', $HideTaskview) } } @@ -398,6 +405,11 @@ switch ($PSBoundParameters.Keys) { Write-Output "" continue } + 'HideTaskview' { + RegImport "> Hiding the taskview button from the taskbar..." $PSScriptRoot\Regfiles\Hide_Taskview_Taskbar.reg + Write-Output "" + continue + } {$_ -in "HideWidgets", "DisableWidgets"} { RegImport "> Disabling the widget service and hiding the widget icon from the taskbar..." $PSScriptRoot\Regfiles\Disable_Widgets_Taskbar.reg Write-Output ""