[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
不错,简单有效。
WinXP 有个笨办法,在任务栏分组的[列表]中,选择重复路径窗口项目,按右键选[关闭]。
据说 Q-Dir、TC 比 Explorer 好用。
『千江有水千江月』千江有水,月映千江;万里无云,万里青天。    http://yu2n.qiniudn.com/

TOP

本帖最后由 yu2n 于 2015-5-6 22:19 编辑

Mark.
怎样用bat重启explorer资源管理器不关闭打开的文件夹呢?
http://www.bathome.net/thread-32834-1-1.html


【更新】坛友 CrLf 提醒explorer打开路径可用
  1. oShell.explore strURL
复制代码
VBS代码如下:
  1. Call RestartExplorer()
  2. Function RestartExplorer()
  3.   Dim arrURL(), strURL, oShell, oWin, n
  4.   n = -1
  5.   Set oShell = CreateObject("Shell.Application")
  6.   For Each oWin In oShell.Windows
  7.     If Instr(1, oWin.FullName, "\explorer.exe", vbTextCompare) Then
  8.       n = n + 1
  9.       ReDim Preserve arrURL(n)
  10.       arrURL(n) = oWin.LocationURL
  11.     End If
  12.   Next
  13.   CreateObject("WScript.Shell").run "tskill explorer", 0, True
  14.   For Each strURL In arrURL
  15.     oShell.Explore strURL
  16.   Next
  17. End Function
复制代码
参考:VBS关闭重复的文件夹窗口
http://www.bathome.net/thread-32053-1-1.html
『千江有水千江月』千江有水,月映千江;万里无云,万里青天。    http://yu2n.qiniudn.com/

TOP

返回列表