Home  >  Article  >  System Tutorial  >  How to restore the original color of the win10 taskbar?

How to restore the original color of the win10 taskbar?

WBOY
WBOYforward
2023-12-24 08:05:221634browse

It is an uncommon problem that the win10 taskbar turns white. Many users default to gray, but suddenly turn white. This is intentional by Microsoft to distinguish between light and dark skins. . As long as we can modify it through the registry or command code.

How to restore the original color of the win10 taskbar?

How to restore the win10 taskbar when it turns white

It was originally a gray background

How to restore the original color of the win10 taskbar?

Method 1:

1. Open Windows R and enter "regedit" during runtime and press Enter to open the registry editor.

2. Locate HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search\Flighting\0\SearchBoxTransparencyBackground

3. Double-click the Value value on the right to modify the numerical data. The rules are as follows:

1) The adjustable range is 0~100 (decimal);

2) 0 is so-called completely "transparent", 100 is completely opaque (white);

How to restore the original color of the win10 taskbar?

Method 2:

1. Enter "powershell" in the search box in the lower left corner and press Enter, right-click to run "Windows PowerShell" as administrator,

2. Enter the following command in Administrator: Windows PowerShell:

Get-AppXPackage -Name Microsoft.Windows.Cortana | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest .xml"}

How to restore the original color of the win10 taskbar?

Method 3:

1. Open Run in Windows R, enter "regedit" during run and press Enter to open the Registry Editor .

2. Locate

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search\Flighting\0\WhiterSearchBox and HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search\Flighting\1\ WhiterSearchBox changes the data value of the Value value in the right window to 0.

Method 4:

Create a new notepad file under the system and copy the following commands into the notepad:

@echo off

REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Search\Flighting\0 /f

REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Search\Flighting\1 /f

taskkill /f /IM explorer.exe

start /IM explorer.exe

Then click Save As, select all types as the file type, and add .bat (such as taskbar.bat) after the file name. Generate a bat file.

After that, search for Task Scheduler in Cortana, right-click the Task Scheduler library, and select New Task. The name description under the General tab is arbitrary, create a new trigger, and the condition is startup. Create new in the operation tab, execute the script and select the bat file created above by browsing and confirm. Under the Settings tab, the default setting is to check the Stop task after x days. It is recommended that you manually uncheck it under this tab so that the task has no timeout limit. In addition, the trigger also has this option when creating a new trigger. Please make sure that this option is not checked.

After all settings are completed, restart the computer and see the effect.

How to restore the original color of the win10 taskbar?

The above is the detailed content of How to restore the original color of the win10 taskbar?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:somode.com. If there is any infringement, please contact admin@php.cn delete