WinXP opens the solution for 2 identical tags in any program taskbar.

  

If we open multiple programs at the same time, WinXP will display a label under the taskbar, 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.

First open NOTEPAD:

Enter the following information:

Set WSHShell = WScript.CreateObject("WScript.Shell")

Message = " This script is used to fix the problem of not being able to display icons in the taskbar when minimizing programs in Windows XP. "& vbCR & vbCR

Message = Message & " In order to work properly, this script will close and restart the Windows Explorer shell, this operation will not damage your system. & Quot; & vbCR & vbCR

Message = Message & "! Turn off all anti-virus software, real-time monitoring and save all open files. & Quot; & vbCR & vbCR

Message = Message & " 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 & "No CloseDragDropBands ", 0, " REG_DWORD "

WshShell.RegWrite p1 & " NoSetTaskbar ", 0, " 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 & "NoMoving Bands"

p1 = "HKLMSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell"

WshShell.RegWrite p1, "explorer.exe", "REG_SZ"

p1 = "HKCUSoftwareMicrosoftInternet 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 " does not make any changes to your system. & Quot; & vbcr & vbcr & "? Kelly Theriot and Doug Knox ", 4096, " user canceled the "

End If

The above information is all After typing in (from Set WSHShell to End If), save the Notepad as a file in VBS format, 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