I'm running Windows 7 64-bit (library folders moved to E:
, system still on C:
). I am using someone's batch file to open VLC media player in full screen on my second display(left) and the control window on my primary display(right). The batch file is in my video library and I drag and drop a video file onto the batch file and everything is great EXCEPT the command prompt will not close until I close VLC.
I have tried exit
, cls
, goto:eof
and @echo off
at beginning in several different combinations with no success. How can I make the cmd window close after opening VLC or never show in the first place?
(please note that my cmd window takes up a majority of my primary screen because of how I use it for something completely unrelated, so no making it smaller and moving it won't work either.)
set vlcPath="C:\Program Files\VideoLAN\VLC\vlc.exe"
%vlcPath% %1 --video-x=-1920 --video-y=1080 --width=300 --height=300 --fullscreen --no-video-title-show --no-embedded-video --no-qt-fs-controller
Try this batch :
And this what i mean to do it with a vbscript :