问题描述:最小化窗口以后,窗口就“不见”了,如同被关闭了一样。在任务栏看不到。但是实际上是存在的,按下“alt+tab”即可看见。在任务管理器中仍然可以看见。在任务管理器中结束进程“explorer.exe”再重启explorer任务可以看见任务栏闪现窗口。用杀毒软件查不出异常。 解决办法:把以下代码保存成 *.vbs 文件,双击执行即可。 把以下代码保存成.vbs文件,双击执行就行了。
X = MsgBox(Message, vbYesNo+vbExclamation, "注意") If X = 6 Then On Error Resume Next WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\" WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\Explorer Bars\{32683183-48a0-441b-a342-7c2a440a9478}\BarSize" P1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\" WshShell.RegWrite p1 & "NoBandCustomize", 0, "REG_DWORD" p1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\" WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell" WshShell.RegWrite p1, "explorer.exe", "REG_SZ" p1 = "HKCU\Software\Microsoft\Internet Explorer\Explorer Bars\{32683183-48a0-441b-a342-7c2a440a9478}\" On Error Goto 0 For Each Process in GetObject("winmgmts:"). _ MsgBox "恭喜你任务已完成!", 4096, "完成" Else MsgBox "没有对你的系统进行任何改变。", 4096, "用户取消了" End If |