INTERACT FORUM
More => Old Versions => Media Center 12 (Development Ended) => Topic started by: Osho on May 25, 2007, 11:45:47 am
-
Hi,
I have created a custom command in Theater View to call a particular bat file from MC12. This works as expected and the bat file is called when I select that command in theater view. However, I don't see any window with the output of the .bat file (similar to cmd.exe window) when I run this bat file. Is there any way to see this window?
thanks,
Osho
-
I have created a custom command in Theater View to call a particular bat file from MC12. This works as expected and the bat file is called when I select that command in theater view. However, I don't see any window with the output of the .bat file (similar to cmd.exe window) when I run this bat file. Is there any way to see this window?
It's probably because Theater View is set to be always on top, so the command window is there but is hidden. Try unchecking Options --> Theater View --> Behavior --> Keep Focus.
-
It's probably because Theater View is set to be always on top, so the command window is there but is hidden. Try unchecking Options --> Theater View --> Behavior --> Keep Focus.
Actually theater view does minimize itself when I execute this bat file. Anyways, it shouldn't matter because the first line of the .bat file is
C:\WINDOWS\SYSTEM32\MC12.EXE /Close
to terminate MC12 - which works correctly by the way!
thanks,
Osho
-
Aha! That's why. When you launch a BAT file from within MC, it is launched as a child process of MC's process. When you kill MC, this child process becomes orphaned and windowless. I'm guessing that they hid the CMD window when launched from within Theater View on purpose, because that's what most people would want.
A simple workaround is to launch the script using a WSH script instead to then launch your BAT file. Check this thread: http://yabb.jriver.com/interact/index.php?topic=35576.msg243562#msg243562
and this one:
http://yabb.jriver.com/interact/index.php?topic=35953.msg244929#msg244929
You wouldn't want to re-write it in WSH, but just launch the BAT file from within a WSH "wrapper" script (though you could re-write it and then you could have a nice gui for your output with buttons and dialog boxes). Then MC's logic that hides the command window wouldn't catch it (and you have more control over how the command window appears too).
-
Thanks glynor but I found a much simpler solution via google search. Previously I was launching a foo.bat file. Now, I launch a bar.bat file which has only one line
start foo.bat
This seems to work - now I get the window.
Osho
-
Yep... That'd work too if all you want is a simple command window.