我需要一些关于指定安装的可移动磁盘的路径的解释。我的批号...
wmic LOGICALDISK where driveType=2 get deviceID > "C:\Windows\Temp\wmic.txt"
cls
for /f "skip=1" %%b IN ('type C:\Windows\Temp\wmic.txt') DO (xcopy JKDClean.bat %%b /Y)
for /f "skip=1" %%b IN ('type C:\Windows\Temp\wmic.txt') DO (xcopy run.vbs %%b /Y)
echo -----
echo Cleaning removable disk
for /f "skip=1" %%b IN ('type C:\Windows\Temp\wmic.txt') DO (wscript %%b\run.vbs)
TIMEOUT /T 10 /NOBREAK
echo DONE!!!
echo -----
for /f "skip=1" %%b IN ('type C:\Windows\Temp\wmic.txt') DO (del /s /q /f %%b\*.inf)
Del C:\Windows\Temp\wmic.txt
echo -----
echo DONE!!!
pause
在第 4 行“xcopy JKDClean.bat %%b”路径运行得更好。 但我无法运行那个 vbs 文件“wscript %%b\run.vbs”。我需要在可移动驱动器中运行该 vbs 文件。如何指定当前可移动磁盘的路径???