2014-09-25 48 views

回答

0
@echo off 

setlocal 

set "file_with_programs=c:\some.txt" 

for /f "usebackq tokens=* delims=" %%# in ("%file_with_programs%") do (
    start "" "%%~#" 
) 

endlocal 

不知道這是你想要的列表那裏有文本文件,但不是programs.Change文件的路徑。

+0

正是我所需要的。 – Jonthemanman 2014-09-25 19:37:45

+0

如果答案令人滿意,您可以接受,我們都會收到一些積分。 – npocmaka 2014-09-25 19:39:08

相關問題