I need to start several cmd.exe console applications so that they should be positioned on the screen in a particular order - is it possible to do with a .bat file?
I am running Windows 7.
|
I need to start several cmd.exe console applications so that they should be positioned on the screen in a particular order - is it possible to do with a .bat file? I am running Windows 7. | ||||
|
feedback
|
|
I'm not aware of a way to do it with a batch script, but you can use the following VBScript:
It uses the Win32_ProcessStartup WMI class - you can find more details here. Change the value of objConfig.X and objConfig.Y to set the X and Y location of where the Command Prompt should open. | |||
feedback
|