-1
我在這裏有這個文件約三百個文件。如何通過bat文件使用範圍打開許多exe程序
form1.exe
form2.exe
form3.exe
form4.exe
form5.exe
form6.exe
form7.exe
form8.exe
form9.exe
at
form300.exe
我需要批處理文件有一個文本輸入到form7.exe運行form3.exe和另一個例子來自form212.exe在form300.exe
我編寫運行,這可能是幫助
set /P from=from: %=%
set /P to=to: %=%
start Form%from%.exe at form%to%.exe
例如
first input : 3
second input : 7
this will open form3.exe form4.exe form5.exe form6.exe and form7.exe
任何幫助,請
請冷靜下來,用更多的話,少感嘆號解釋! – usr2564301
對不起..我修正了我的話 – user2911198
運行'for /?'。它應該可以幫助你開始。你很可能想要/ L選項。 –