I would like to write a batch file that will open VLC in full screen mode on booting. By full screen I mean clicking 'f' s.t VLC appears on all the screen.

I am novice and I would appreciate if someone could write the few lines that create this batch file.

BTW, where should I put this batch file? in the start folder?

link|improve this question
Put the batch file where ever you want it. I prefer putting it in the same folder as VLC and then creating a shortcut to the batch file. – surfasb Jul 1 '11 at 11:41
feedback

migrated from stackoverflow.com Jun 30 '11 at 14:22

This question came from our site for professional and enthusiast programmers.

1 Answer

A batchfile which calls vlc as below will work:

vlc --fullscreen

Read http://wiki.videolan.org/VLC_command-line_help

link|improve this answer
feedback

Your Answer

 
or
required, but never shown