Is there a command I can put into a Windows XP .bat file to bring the command shell to the front?
|
|
From a batch file, no. If you want to activate a window you have to use SetActiveWindow(). If you don't want to get dirty with windows programming but still want to activate windows and simple stuff like that, I highly recommend checking out Autoit. You could always call this program from your batchfile to have it do the task. |
||
|
|
|
|
nircmd will do this, though it involves a little scripting.
You basically need to know the title of the cmd window you are executing (you can set this via the TITLE command in windows) thus:
should do the trick. Note some malware tools make use of the NirCmd executable (it requires no deployment as is very powerful) this may cause you problems. |
||||
|
