WinXP taskbar with the same label solution

  
If we open multiple programs at the same time, WinXP's taskbar will display a label below, which will help us quickly find the opened window. There are many kinds of faults on the WinXP taskbar. The taskbar fault that we are going to introduce below is quite peculiar. It means that no matter what program you open, it will display the top and bottom in the same label. In the face of such a strange problem, how do we solve it?

This problem can be solved quickly by modifying the registry.
Recommended: The latest WinXP system
First open NOTEPAD (Notepad):
Enter the following information:
Set WSHShell = WScript.CreateObject("WScript.Shell")
Message = " This script is used to fix the problem that the icon cannot be displayed on the taskbar when minimizing the program in Windows XP. & Quot; & vbCR & vbCR
Message = Message & " To function properly, this script will shut down and restart Windows Explorer shell, this operation will not damage your system. " & vbCR & vbCR
Message = Message & "Please turn off real-time monitoring of all anti-virus software! and save all open files. "& vbCR & vbCR
Message = Message & "Do you want to continue?"
X = MsgBox(Message, vbYesNo+vbExclamation, "Note")
If X = 6 Then
On Error Resume Next
WshShell.RegDelete " HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStuckRects2 "
WshShell.RegDelete " HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStreamsMRU "
WshShell.RegDelete " HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStreamsDesktop "
WshShell.RegDelete " HKCUSoftwareMicrosoftInternet ExplorerExplorer Bars {32683183 -48a0-441b-a342-7c2a440a9478} BarSize "
P1 = " HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer "
WshShell.RegWrite p1 & " NoBandCustomize ", 0, " REG_DWORD "
WshShell.RegWrite p1 & "NoMovingBands", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoSetTaskbar", 0 , & Quot; REG_DWORD "
WshShell.RegWrite p1 & " NoToolbarsOnTaskbar ", 0, " REG_DWORD "
WshShell.RegWrite p1 & " NoSaveSettings ", 0, " REG_DWORD "
WshShell. RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoSetTaskbar",0,"REG_DWORD"
WshShell.RegWrite p1 & "NoActiveDesktop",0 , " REG_DWORD "
WshShell.RegWrite p1 & " ClassicShell ", 0, " REG_DWORD "
p1 = " HKCUSoftwareMicrosoftWindowsCurrentVersionGroup Policy Objects local UserSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer "
WshShell.RegWrite p1 & " NoCloseDragDropBands ", 0, "REG_DWORD"
WshShell.RegDelete p1 & "NoMovingBands"
p1 = "HKLMSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell"
WshShell.RegWrite p1, "explorer.exe", "REG_SZ"
p1 = "HKCUSoftwareMicrosoftIn ternet ExplorerExplorer Bars {32683183-48a0-441b-a342-7c2a440a9478} "
WshShell.RegDelete p1 & " BarSize "
WshShell.RegWrite p1, " media area ", " REG_SZ "
On Error Goto 0
For Each Process in GetObject("winmgmts:"). _
ExecQuery ("select * from Win32_Process where name='explorer.exe'")
Process. Terminate(0)
Next
MsgBox "Complete!" & vbcr & vbcr & "?Kelly Theriot and Doug Knox", 4096, "Complete"
Else
MsgBox " has not made any changes to your system. " & vbcr & vbcr & "?Kelly Theriot and Doug Knox", 4096, "User canceled "
End If

Enter all of the above information (from Set WSHShell until End If), save the Notepad as a VBS file, and then double-click to execute the script file, the problem is solved. It seems that the code is very complicated and complicated. In fact, it only needs to create new text, copy, paste, and execute four steps. If a WinXP user encounters such a taskbar failure, he will quickly take the above method to fix it.

Copyright © Windows knowledge All Rights Reserved