Multiple changes and additions

* Improved certain registry edits that remove suggested content
* Added a few new third party apps to removal list
* Added option to hide taskview button from taskbar
This commit is contained in:
Raphire
2023-08-07 00:49:41 +02:00
parent eb7c99e8c4
commit 12963ebd3e
10 changed files with 21 additions and 1 deletions

View File

@@ -48,6 +48,7 @@
*COOKINGFEVER* *COOKINGFEVER*
*CyberLinkMediaSuiteEssentials* *CyberLinkMediaSuiteEssentials*
*DisneyMagicKingdoms* *DisneyMagicKingdoms*
*Disney*
*Dolby* *Dolby*
*DrawboardPDF* *DrawboardPDF*
*Duolingo-LearnLanguagesforFree* *Duolingo-LearnLanguagesforFree*
@@ -59,6 +60,7 @@
*HiddenCity* *HiddenCity*
*HULULLC.HULUPLUS* *HULULLC.HULUPLUS*
*iHeartRadio* *iHeartRadio*
*Instagram*
*king.com.BubbleWitch3Saga* *king.com.BubbleWitch3Saga*
*king.com.CandyCrushSaga* *king.com.CandyCrushSaga*
*king.com.CandyCrushSodaSaga* *king.com.CandyCrushSodaSaga*
@@ -78,6 +80,7 @@
*SlingTV* *SlingTV*
*Speed Test* *Speed Test*
*Spotify* *Spotify*
*TikTok*
*TuneInRadio* *TuneInRadio*
*Twitter* *Twitter*
*Viber* *Viber*

View File

@@ -32,6 +32,7 @@ painstakingly go through all the settings yourself, or removing apps one by one!
- Show file extensions for known file types. - Show file extensions for known file types.
- Align taskbar icons to the left. (Windows 11 only) - Align taskbar icons to the left. (Windows 11 only)
- Hide or change the search icon/box on the taskbar. (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. - 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 Chat (meet now) icon from the taskbar.
- Hide the 3D objects, music or onedrive folders in windows explorer. (Windows 10 only) - Hide the 3D objects, music or onedrive folders in windows explorer. (Windows 10 only)

View File

@@ -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. - Show file extensions for known file types.
- Align taskbar icons to the left. (Windows 11 only) - Align taskbar icons to the left. (Windows 11 only)
- Hide or change the search icon/box on the taskbar. (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. - 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 chat (meet now) icon from the taskbar.
- Hide the 3D objects, music or onedrive folder in the windows explorer sidepanel. (Windows 10 only) - 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 - COOKINGFEVER
- CyberLinkMediaSuiteEssentials - CyberLinkMediaSuiteEssentials
- DisneyMagicKingdoms - DisneyMagicKingdoms
- Disney
- Dolby - Dolby
- DrawboardPDF - DrawboardPDF
- Duolingo-LearnLanguagesforFree - Duolingo-LearnLanguagesforFree
@@ -160,6 +162,7 @@ By default, this script removes a large selection preinstalled bloatware, while
- HiddenCity - HiddenCity
- HULULLC.HULUPLUS - HULULLC.HULUPLUS
- iHeartRadio - iHeartRadio
- Instagram
- king.com.BubbleWitch3Saga - king.com.BubbleWitch3Saga
- king.com.CandyCrushSaga - king.com.CandyCrushSaga
- king.com.CandyCrushSodaSaga - king.com.CandyCrushSodaSaga
@@ -179,6 +182,7 @@ By default, this script removes a large selection preinstalled bloatware, while
- SlingTV - SlingTV
- Speed Test - Speed Test
- Spotify - Spotify
- TikTok
- TuneInRadio - TuneInRadio
- Twitter - Twitter
- Viber - Viber

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -20,6 +20,7 @@ param
[Parameter(ValueFromPipeline = $true)][switch]$ShowSearchIconTb, [Parameter(ValueFromPipeline = $true)][switch]$ShowSearchIconTb,
[Parameter(ValueFromPipeline = $true)][switch]$ShowSearchLabelTb, [Parameter(ValueFromPipeline = $true)][switch]$ShowSearchLabelTb,
[Parameter(ValueFromPipeline = $true)][switch]$ShowSearchBoxTb, [Parameter(ValueFromPipeline = $true)][switch]$ShowSearchBoxTb,
[Parameter(ValueFromPipeline = $true)][switch]$HideTaskview,
[Parameter(ValueFromPipeline = $true)][switch]$DisableWidgets, [Parameter(ValueFromPipeline = $true)][switch]$DisableWidgets,
[Parameter(ValueFromPipeline = $true)][switch]$HideWidgets, [Parameter(ValueFromPipeline = $true)][switch]$HideWidgets,
[Parameter(ValueFromPipeline = $true)][switch]$DisableChat, [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 ((-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) { if ($RunDefaults -or $RunWin11Defaults) {
$Mode = '1'; $Mode = '1';
@@ -207,6 +208,7 @@ if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or (
$PSBoundParameters.Add('TaskbarAlignLeft', $TaskbarAlignLeft) $PSBoundParameters.Add('TaskbarAlignLeft', $TaskbarAlignLeft)
} }
# Show options for search icon on taskbar, only continue on valid input
Do { Do {
Write-Output "" Write-Output ""
Write-Output " Options:" Write-Output " Options:"
@@ -233,7 +235,12 @@ if ((-NOT $PSBoundParameters.Count) -or $RunDefaults -or $RunWin11Defaults -or (
'4' { '4' {
$PSBoundParameters.Add('ShowSearchBoxTb', $ShowSearchBoxTb) $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 "" Write-Output ""
continue continue
} }
'HideTaskview' {
RegImport "> Hiding the taskview button from the taskbar..." $PSScriptRoot\Regfiles\Hide_Taskview_Taskbar.reg
Write-Output ""
continue
}
{$_ -in "HideWidgets", "DisableWidgets"} { {$_ -in "HideWidgets", "DisableWidgets"} {
RegImport "> Disabling the widget service and hiding the widget icon from the taskbar..." $PSScriptRoot\Regfiles\Disable_Widgets_Taskbar.reg RegImport "> Disabling the widget service and hiding the widget icon from the taskbar..." $PSScriptRoot\Regfiles\Disable_Widgets_Taskbar.reg
Write-Output "" Write-Output ""