Starting multiple files through batch file -


i trying write batch file when invoked through cmd launch 3 programs consecutively. here have far:

cd c:\program files\cpuid\cpu-z\ cpuz.exe cd "c:\program files\core temp\" "core temp.exe" cd "c:\program files (x86)\evga precision x\" evgaprecision.exe 

the problem when execute batch file launches first program , pauses. when close first program go on second command. keep in mind each of these programs require permission user run through "do want allow following program make changes computer?" thing.

the ideal scenario have program launch @ same time out prompting permission, if impossible, i'm fine clicking "yes" each 1 of them long still launch consecutively , don't have close each program.

this should looking for:

start "" "c:\program files\cpuid\cpu-z\cpuz.exe" start "" "c:\program files\core temp\core temp.exe" start "" "c:\program files (x86)\evga precision x\evgaprecision.exe" 

Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -