PC Review


Reply
Thread Tools Rate Thread

autorun.inf to pass wmplayer,filename, AND /fullscreen parameter

 
 
=?Utf-8?B?VGFsbER1ZGU=?=
Guest
Posts: n/a
 
      8th Feb 2006
I made a great slideshow using MS photostory 3, output file type 'wmv';
It should normally play on wmplayer.exe on most XP machines.
The following line will run perfectly on my pc from the START, RUN spot:

wmplayer "C:\Documents and Settings\MyPC\My Documents\My
Videos\PhotoStory1_best_trip.wmv" /fullscreen

I want to distribute copies of the CD to people with XP machines and
have an autorun.inf file on the CD to automatically start the 'wmv' slideshow
fullscreen.

The autorun.inf I came up with looks like this:

[autorun]
shellexecute="PhotoStory1_best_trip.wmv /fullscreen"

This launches Windows Media Player and the correct file on the CD, but
does not kick in the full screen option.

I have tried different OPEN, SHELLEXECUTE, and even batch file
combinations and cannot get the autorun.inf to function like the RUN
command.

I do not want the end users to have to fumble with or bother with figuring
out how to set the player to fullscreen (while they are also missing the first
minute of the slideshow.)

Any solutions should be for the standard XP SP2 load and should be known
to work for exactly what I am talking about. Thanks

 
Reply With Quote
 
 
 
 
zachd [ms]
Guest
Posts: n/a
 
      8th Feb 2006

Does
shellexecute="Photstory1_best_trip.wmv" /fullscreen
work...?

--
(speaking for myself and doing this in my free time)
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--

"TallDude" <(E-Mail Removed)> wrote in message
news:60EC429C-E983-4188-85DB-(E-Mail Removed)...
>I made a great slideshow using MS photostory 3, output file type 'wmv';
> It should normally play on wmplayer.exe on most XP machines.
> The following line will run perfectly on my pc from the START, RUN spot:
>
> wmplayer "C:\Documents and Settings\MyPC\My Documents\My
> Videos\PhotoStory1_best_trip.wmv" /fullscreen
>
> I want to distribute copies of the CD to people with XP machines and
> have an autorun.inf file on the CD to automatically start the 'wmv'
> slideshow
> fullscreen.
>
> The autorun.inf I came up with looks like this:
>
> [autorun]
> shellexecute="PhotoStory1_best_trip.wmv /fullscreen"
>
> This launches Windows Media Player and the correct file on the CD, but
> does not kick in the full screen option.
>
> I have tried different OPEN, SHELLEXECUTE, and even batch file
> combinations and cannot get the autorun.inf to function like the RUN
> command.
>
> I do not want the end users to have to fumble with or bother with figuring
> out how to set the player to fullscreen (while they are also missing the
> first
> minute of the slideshow.)
>
> Any solutions should be for the standard XP SP2 load and should be known
> to work for exactly what I am talking about. Thanks
>



 
Reply With Quote
 
=?Utf-8?B?VGFsbER1ZGU=?=
Guest
Posts: n/a
 
      9th Feb 2006
Sorry, same result, file launchs okay in media player but not fullscreen.

"zachd [ms]" wrote:

>
> Does
> shellexecute="Photstory1_best_trip.wmv" /fullscreen
> work...?
>
> --
> (speaking for myself and doing this in my free time)
> See http://zachd.com/pss/pss.html for some helpful WMP info.
> This posting is provided "AS IS" with no warranties, and confers no rights.
> --
>
> "TallDude" <(E-Mail Removed)> wrote in message
> news:60EC429C-E983-4188-85DB-(E-Mail Removed)...
> >I made a great slideshow using MS photostory 3, output file type 'wmv';
> > It should normally play on wmplayer.exe on most XP machines.
> > The following line will run perfectly on my pc from the START, RUN spot:
> >
> > wmplayer "C:\Documents and Settings\MyPC\My Documents\My
> > Videos\PhotoStory1_best_trip.wmv" /fullscreen
> >
> > I want to distribute copies of the CD to people with XP machines and
> > have an autorun.inf file on the CD to automatically start the 'wmv'
> > slideshow
> > fullscreen.
> >
> > The autorun.inf I came up with looks like this:
> >
> > [autorun]
> > shellexecute="PhotoStory1_best_trip.wmv /fullscreen"
> >
> > This launches Windows Media Player and the correct file on the CD, but
> > does not kick in the full screen option.
> >
> > I have tried different OPEN, SHELLEXECUTE, and even batch file
> > combinations and cannot get the autorun.inf to function like the RUN
> > command.
> >
> > I do not want the end users to have to fumble with or bother with figuring
> > out how to set the player to fullscreen (while they are also missing the
> > first
> > minute of the slideshow.)
> >
> > Any solutions should be for the standard XP SP2 load and should be known
> > to work for exactly what I am talking about. Thanks
> >

>
>
>

 
Reply With Quote
 
=?Utf-8?B?VGFsbER1ZGU=?=
Guest
Posts: n/a
 
      10th Feb 2006
[autorun]
open=starter.bat
-------------------------------------------------------------
STARTER.BAT
subst z: \
start wmplayer /fullscreen z:\Photstory1_best_trip.wmv
exit
------------------------------------------------------------
Even though the file will be on the current drive, in the root
path; The only syntax that will work is to add a drive letter to
the statement. Using the old DOS SUBST will make whatever the
drive letter of someones CD drive, be drive Z.
There should be an easier way ...... : )
 
Reply With Quote
 
=?Utf-8?B?emF6b3JwYXRvcg==?=
Guest
Posts: n/a
 
      11th Apr 2006
thank you very much for sharing your valuable result with everyone. we have
got the same problem with you so it has helped us so much.

"TallDude" wrote:

> I made a great slideshow using MS photostory 3, output file type 'wmv';
> It should normally play on wmplayer.exe on most XP machines.
> The following line will run perfectly on my pc from the START, RUN spot:
>
> wmplayer "C:\Documents and Settings\MyPC\My Documents\My
> Videos\PhotoStory1_best_trip.wmv" /fullscreen
>
> I want to distribute copies of the CD to people with XP machines and
> have an autorun.inf file on the CD to automatically start the 'wmv' slideshow
> fullscreen.
>
> The autorun.inf I came up with looks like this:
>
> [autorun]
> shellexecute="PhotoStory1_best_trip.wmv /fullscreen"
>
> This launches Windows Media Player and the correct file on the CD, but
> does not kick in the full screen option.
>
> I have tried different OPEN, SHELLEXECUTE, and even batch file
> combinations and cannot get the autorun.inf to function like the RUN
> command.
>
> I do not want the end users to have to fumble with or bother with figuring
> out how to set the player to fullscreen (while they are also missing the first
> minute of the slideshow.)
>
> Any solutions should be for the standard XP SP2 load and should be known
> to work for exactly what I am talking about. Thanks
>

 
Reply With Quote
 
philinglis@typhoonsoftware.com
Guest
Posts: n/a
 
      11th Apr 2006
Try using AutoRun: http://www.typhoonsoftware.com/download.htm

You can open video playlists and set to fullscreen as well as a lot of
other options,

Phil

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to pass a dragged filename as parameter in a WinXP shortcut? Cindy Parker Windows XP Help 3 14th Aug 2010 08:47 AM
How to pass a dragged filename as parameter in a WinXP shortcut? Cindy Parker Windows XP General 0 12th Aug 2010 08:36 AM
Appending parameter from parameter query to exported filename LauraB Microsoft Access VBA Modules 4 3rd Nov 2008 07:05 PM
Pass Parameter to stored procedure in pass thru query SAC Microsoft Access Queries 7 11th Jul 2007 12:49 PM
Using AutoRun to start Internet Explorer and pass a filename to it paul Windows XP Internet Explorer 2 28th Feb 2004 10:27 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:48 AM.