INTERACT FORUM
More => Old Versions => Media Center 11 (Development Ended) => Topic started by: edbro on November 15, 2004, 11:01:14 pm
-
How do I add more than one command line parameter to mjextman.exe? I am trying to build a command that will open MC in Fullscreen and play a DVD. I figured the command line would look like this:
mjextman.exe /Mode Fullscreen /Play DEVICE=E:
But, that only opens MC in fullscreen mode. If I switch the order of the parameters on the command line I can get it to play the DVD but it doesn't open if full screen mode.
How do I pass more than one parameter?
-
I know absolutely nothing about mjextman.exe, but a workaround would be to create a batch file I suppose:
@echo off
mjextman.exe /Mode Fullscreen
mjextman.exe /Play DEVICE=E:
-
Actually that did work. Thank you.
I still wonder if you can pass more than one parameter at a time.