INTERACT FORUM

More => Old Versions => Media Center 11 (Development Ended) => Topic started by: edbro on November 15, 2004, 11:01:14 pm

Title: Combine Command Line Parameters
Post 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:
Code: [Select]
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?
Title: Re:Combine Command Line Parameters
Post by: Omni on November 15, 2004, 11:05:33 pm
I know absolutely nothing about mjextman.exe, but a workaround would be to create a batch file I suppose:

Code: [Select]
@echo off
mjextman.exe /Mode Fullscreen
mjextman.exe /Play DEVICE=E:
Title: Re:Combine Command Line Parameters
Post by: edbro on November 15, 2004, 11:09:56 pm
Actually that did work. Thank you.

I still wonder if you can pass more than one parameter at a time.