插入到批处理文件目录的其他PC时检测USB驱动器号的代码?

时间:2017-10-18 12:44:03

标签: batch-file

@echo off     

cd "G:\Stuff\Util"
start launch.bat

cd "G:\Stuff"                    
for /L %%a in (1,1,10) do (
Start batch2.bat
exit 0          
)

^我的代码

我需要知道如何让我的批处理文件在不同的PC上运行其他文件。当我插入另一台电脑时,驱动器号可能会改变。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

想出来。

@echo off     

pushd %~d0
cd "\Stuff\Util"
start launch.bat

cd "\Stuff"                  
for /L %%a in (1,1,10) do (
Start batch2.bat
exit 0          
)