Home  >  Article  >  System Tutorial  >  How to deal with the gray color of the WIN10 computer taskbar

How to deal with the gray color of the WIN10 computer taskbar

PHPz
PHPzforward
2024-03-27 22:31:20627browse

php editor Baicao will introduce to you in detail how to deal with the gray color of the WIN10 computer taskbar. In WIN10 system, the gray and white taskbar may be caused by theme settings or display problems. You can try changing the theme, adjusting display settings, or restarting the resource manager to resolve the issue. Through simple operation adjustments, you can restore the normal color of the taskbar and improve the operation experience.

1. Open Windows R and run, enter [regedit] and press Enter to open the registry editor.

How to deal with the gray color of the WIN10 computer taskbar

2. Locate HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionSearchFlighting? SearchBoxTransparencyBackground.

How to deal with the gray color of the WIN10 computer taskbar

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 the so-called completely [transparent], 100 is completely opaque (white).

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" }

Method 3:

1. Open Windows R and run, enter [regedit] during run and press Enter to open the registry editor.

2. Locate

HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionSearchFlighting? WhiterSearchBox and HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionSearchFlighting1WhiterSearchBox change 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 HKCUSoftwareMicrosoftWindowsCurrentVersionSearchFlighting? /f

REG DELETE HKCUSoftwareMicrosoftWindowsCurrentVersionSearchFlighting1 /f

taskkill /f /IM explorer.exe

start /IM explorer.exe

Then click Save as, file type Select all types, and add .bat (such as taskbar.bat) after the file name to 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, just restart the computer.

The above is the detailed content of How to deal with the gray color of the WIN10 computer taskbar. For more information, please follow other related articles on the PHP Chinese website!

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