I need to open a file in "standby" mode from a shortcut, wait for an introduction speech and then play the file.

How can I open the file in Windows Media Player 11 by command-line without playing it?

link|improve this question
feedback

2 Answers

up vote -1 down vote accepted

According to this you can use /open in Windows Media Player 6.4, but it seems that the command line options have since changed.

link|improve this answer
The /open option does not work any more. Answer should be deleted. – Nifle Jul 13 '11 at 17:35
feedback

You can make a .bat/.cmd file with a pause statement. At the end of the intro you can then press Enter and the video will start. Here's an example:

@echo off
echo Tested on Windows 7 64-bit
pause 
start /d "%ProgramFiles(x86)%\Windows Media Player" wmplayer.exe "C:\Users\Username\Videos\GTA 4\test.avi"
link|improve this answer
Not exactly an answer to that question, but a nice idea! – Mulmoth Jul 14 '11 at 11:01
feedback

Your Answer

 
or
required, but never shown

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