当前位置:主页 > 深度系统教程 >

手把手细说最新笔记本专用xp系统任务栏出现两个相同标签的方案?

发布日期:2014-08-03      作者:深度系统      来源:http://www.54zc.com
手把手细说最新笔记本专用xp系统任务栏出现两个相同标签的方案?

  如果咱们同时打开多个程序,winxp的任务栏下面就会展示一个个标签,这些标签能借助咱们快速查找到已开启的窗口。关于winxp系统任务栏问题有非常多种,下面咱们要详解的这个任务栏问题是比较奇特的,就是不管你开启了什么程序,它都会以相同标签的方式显示出上下2个。面对这么奇怪的问题,咱们要怎样处理呢?只要通过修改注册表,这个问题很快就能得到处理。

推荐:萝卜家园xp纯净版系统下载



  1、首先打开noTEpAd(记事本):

  写入以下信息:

  set wsHshell = wscript.Createobject("wscript.shell")

  Message = "本脚本用于修复windows xp中当最小化程序时,无法在任务栏显示图片的问题。"& vbCR & vbCR

  Message = Message & "为了正常工作,本脚本将关闭和重启 windows Explorer 外壳,这个操作不会损坏你的系统。" & vbCR & vbCR

  Message = Message & "请关闭所有杀毒软件的实时监控!并保存所有打开的文件。"& vbCR & vbCR

  Message = Message & "是不继续?"

  x = MsgBox(Message, vbYesno+vbExclamation, "注意")

  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, "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本地UsersoftwareMicrosoftwindowsCurrentVersionpoliciesExplorer"

  wshshell.Regwrite p1 & "noClosedragdropBands", 0, "REG_dwoRd"

  wshshell.Regdelete p1 & "noMovingBands"

  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, "媒体区", "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 "完成!" & vbcr & vbcr & "?Kelly Theriot and doug Knox", 4096, "完成"

  Else

  MsgBox "无对你的系统进行一点改变。" & vbcr & vbcr & "?Kelly Theriot and doug Knox", 4096, "网友取消了"

  End if

  2、将上述信息全部写入进去后(从set wsHshell一直到End if),将记事本保存为VBs格式的文件,然后双击执行该脚本文件,问题就得以处理。

    看起来代码是非常多而复杂,其实操作起来只要新建文本、复制、粘帖、执行四步骤就搞定了。如果有winxp系统网友碰到这种任务栏问题,就赶紧采取以上办法搞定它吧。