I need to create a button to launch 2 putty windows.
But second window opens only when first is closed...
Is there a way to do that?
I need to create a button to launch 2 putty windows.
But second window opens only when first is closed...
Is there a way to do that?
Use @async: at the start of the two lines.
is this modifier work with "Ms DOS function"? because it's the same thing
No, @async: doesn't work in MS-DOS functions, but you can use the DOS Start command to run things asynchronously in those:
Start "" "C:\Program Files (x86)\Putty\Putty.exe" MySite1
Start "" "C:\Program Files (x86)\Putty\Putty.exe" MySite2
Or similar.
The extra quotes at the start are important (due to the Start command's silly command-line syntax ).
Excellent , many thanks Leo.