首页 IT技术 热点问题 查看内容

硬盘盘符更改的批处理

热点问题 3022 0 2010-11-28 15:55

下面的代码可以把d: 改为Z: ,你也可以修改这些参数达到自己的效果。 以下为引用的内容:@del "%temp%"\temp.vbs @echo on error resume next "%temp%"\temp.vbs @echo dim WshShell"%temp%"\temp. ...

下面的代码可以把d: 改为Z: ,你也可以修改这些参数达到自己的效果。

以下为引用的内容:
@del "%temp%"\temp.vbs
@echo on error resume next >>"%temp%"\temp.vbs
@echo dim WshShell>>"%temp%"\temp.vbs
@echo Set WshShell =
WScript.CreateObject("WScript.Shell")>>"%temp%"\temp.vbs
@echo WshShell.run"diskpart">>"%temp%"\temp.vbs
@echo
WshShell.AppActivate"c:\windows\system32\diskpart.exe">>"%temp%"\temp.vbs

@echo WScript.Sleep 30>>"%temp%"\temp.vbs
@echo WshShell.SendKeys"select volume=d:">>"%temp%"\temp.vbs

@echo WshShell.SendKeys"{ENTER}">>"%temp%"\temp.vbs
@echo WScript.Sleep 30>>"%temp%"\temp.vbs
@echo WshShell.SendKeys"remove">>"%temp%"\temp.vbs
@echo WshShell.SendKeys"{ENTER}">>"%temp%"\temp.vbs
@echo WScript.Sleep 30>>"%temp%"\temp.vbs
@echo WshShell.SendKeys"assign letter=z:">>"%temp%"\temp.vbs
@echo WshShell.SendKeys"{ENTER}">>"%temp%"\temp.vbs
@call "%temp%"\temp.vbs
1

路过

雷人

握手

鲜花

鸡蛋

刚表态过的朋友 (1 人)

  • 路过

    匿名

相关文章