6 lines
85 B
Batchfile
6 lines
85 B
Batchfile
|
@echo off
|
||
|
for %%x in (*.exe) do (
|
||
|
echo Running %%x...
|
||
|
start /wait "" "%%x"
|
||
|
)
|