vote up 1 vote down star

I have a Virtual Machine in Virtual PC 2007.

To start it from the desktop, I have the following command in a batch file:

"c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc "MY-PC" -launch

But that leaves a dos prompt on the host machine until the virtual machine shuts down, and I exit out of the Virtual PC console. That's annoying.

So I changed my command to use the START command, instead:

start "c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc JSTYONS-DELPHI -launch

But it chokes on the parameters passed into Virtual PC.

"START /?" indicates that parameters do indeed go in that location. Has anyone used START to launch a program with multiple command-line arguments?

@AlbertEin: Yes, I tried that. No luck.

@Mark Allen: Yes, tried that too. No error; it just leaves a blank dos prompt.

@Tim Farley: That worked. Thanks!

@Ferruccio: That is a better idea, with the bonus that I get a pretty icon instead of a little cog-in-a-box. "Answered" goes to Tim though, since he did answer the specific qstn.

flag

5 Answers

vote up 5 vote down check

START has a peculiarity involving double quotes around the first parameter. If the first parameter has double quotes it uses that as the optional TITLE for the new window.

I believe what you want is:

start "" "c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc JSTYONS-DELPHI -launch

In other words, give it an empty title before the name of the program to fake it out.

link|flag
1  
"peculiarity" is being nice... – Michael Burr Sep 30 '08 at 17:31
vote up 0 vote down

START /PGM "C:\Program Files\Microsoft..."

will also do what you want.

Edit: My mistake, /PGM is a parameter of the 4NT start command, not the one in cmd.exe.

link|flag
The /PGM switch must be new with Vista - it doesn't work on my WinXP SP2 box. – Michael Burr Sep 30 '08 at 17:51
vote up 1 vote down

Instead of a batch file, you can create a shortcut on the desktop.

Set the target to:

"c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc "MY-PC" -launch

and you're all set. Since you're not starting up a command prompt to launch it, there will be no DOS Box.

link|flag
vote up 0 vote down

Put the command inside a batch file, and call that with the parameters.

Also, did you try this yet? (Move end quote to encapsulate parameters)

start "c:\program files\Microsoft Virtual PC\Virtual PC.exe -pc JSTYONS-DELPHI -launch"
link|flag
vote up 1 vote down

have you tried:

start "c:\program files\Microsoft Virtual PC\Virtual PC.exe" "-pc JSTYONS-DELPHI -launch"

?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.