Page 1 of 1

Quit all vlc instances

Posted: 15 Aug 2007 06:43
by charlest
On Windows XP, I would like to quit all vlc instances from a batch file. Could someone please show me how?

Re: Quit all vlc instances

Posted: 31 Mar 2008 00:21
by jtaylorts
On Windows XP & Vista you can use

Code: Select all

taskkill /f vlc.exe
That will close all instances of VLC.

Code: Select all

taskkill /?
for more info.

Re: Quit all vlc instances

Posted: 31 Mar 2008 10:19
by charlest
Thanks for your reply.