INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Combine Command Line Parameters  (Read 832 times)

edbro

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 733
Combine Command Line Parameters
« 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?
Logged

Omni

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 827
Re:Combine Command Line Parameters
« Reply #1 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:
Logged

edbro

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 733
Re:Combine Command Line Parameters
« Reply #2 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.
Logged
Pages: [1]   Go Up