标题: [其他] 求在weipe下关闭J盘的bat或者vbs,谢谢 [打印本页]
作者: yyz219 时间: 2022-3-3 12:48 标题: 求在weipe下关闭J盘的bat或者vbs,谢谢
本帖最后由 yyz219 于 2022-3-3 14:06 编辑
已经使用过而【不能够解决问题】的方法有(不是提示缺少这个那个,就提示加载dll出错)
1- taskkill /f /im explorer.exe & start explorer.exe
复制代码
2- @echo off
- mshta "javascript:wnds=new ActiveXObject('Shell.Application').windows(); for (i=0; i<wnds.Count; i++) {w=wnds(i); w && w.document && w.document.folder && 'j:'==w.document.folder.title && w.quit();} close();"
- pause >nul
复制代码
3- Set wins = CreateObject("Shell.Application").Windows
- If not IsNull(wins) Then
- For Each w In wins
- If InStr(LCase(w.FullName), "\explorer.exe") >0 Then w.Quit
- Next
- End If
复制代码
4- path = "j:"
-
- Dim fso
- Set fso = WScript.CreateObject("Scripting.Filesystemobject")
-
- path = fso.GetFolder(path).Path
-
- path = "file:///" & Replace(path,"\","/")
-
- Dim Shell
- Set Shell = WScript.CreateObject("Shell.Application")
-
- For Each W In Shell.Windows
- If w.LocationUrl=path Then W.Quit
- Next
复制代码
5- fdpath="J:"
-
- arr=Split("%,{,},[,],&,^,#,`, ", ",")
- fdpath=Replace(fdpath, "\", "/")
- If Right(fdpath, 1) = "/" Then fdpath=Left(fdpath, Len(fdpath)-1)
- If Len(fdpath) = 2 Then fdpath=fdpath & "/"
-
- Set ShellApp = CreateObject("Shell.Application")
- Set oWindows = ShellApp.Windows
- For Each SubWds In oWindows
- If LCase(SubWds.LocationURL) = LCase("file:///" & encode(fdpath, arr)) Then
- SubWds.Quit()
- End If
- Next
-
- Function encode(ByVal path, ByRef arr)
- For i=0 To UBound(arr)
- path=Replace(path, arr(i), "%" & Hex(Asc(arr(i))))
- Next
- encode=path
- End Function
复制代码
我今天要回老家,可能需要一个星期,回来以后再试一试你给的方法,谢谢
作者: yyz219 时间: 2022-3-5 18:56
真的没有办法了吗?
作者: yyz219 时间: 2022-3-17 21:00
我在别的论坛求助得到了【移除J盘的盘符(同时关闭J盘).bat】
在本论坛搜索到了【根据卷边名称分配一个指定盘符.bat】
http://www.bathome.net/thread-54407-1-1.html 【2楼】
我将两个批处理合二为一,达到了我的目的。
现在有一个问题是:处理速度不是很快
帮我看看能不能加快速度?谢谢!
*********************************- @echo off
- ::【移除J盘的盘符(同时关闭了J盘)】
- set sPanFu=J
-
- (
- echo list volume
- echo exit
- ) | diskpart.exe
-
- (
- echo select volume=%sPanFu%
- echo remove letter=%sPanFu%
- echo exit
- ) | diskpart.exe
-
- ::【将J盘的盘符重新弄出来】我的J盘是:涛的(J:)
- title %info%
- cd /d "%~dp0"
- for /f "tokens=2" %%a in ('echo;list vol^|diskpart^|find "涛的"') do set vol=%%a
- if not defined vol (echo;not found&goto :end)
- (echo;select volume %vol%
- echo;assign letter=J)|diskpart
- :end
- exit
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |