我在打开一个网页后,再最小化时在任务栏中找不到它,没有显示.但在任务管理器中看到还在运行,请问怎样修复?

来源:百度知道 编辑:UC知道 时间:2024/06/09 21:54:42

额,对我来说,恩,重装系统

下一个360看看

把下面横线内的内容复制到新建立的记事本(不包含横线),并存文件名称为"任务栏修复.vbs",运行"任务栏修复.vbs"尝试修复,OK.

===============================================================
'xp_taskbar_desktop_fixall.vbs - Repairs the Taskbar when minimized programs don't show.
'?Kelly Theriot and Doug Knox - 8/22/2003

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

Message = "To work correctly, the script will close" & vbCR
Message = Message & "and restart the Windows Explorer shell." & vbCR
Message = Message & "This will not harm your system." & vbCR & vbCR
Message = Message & "Continue?"

X = MsgBox(Message, vbYesNo, "Notice")

If X = 6 Then

On Error Resume Next

WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\"
Wsh