----- Original Message -----
2011/1/31 John A. Sullivan III <jsullivan@opensourcedevel.com>:
Hmm . . . I wonder if there is any Windows equivalent to ps aux | grep vcxsrv? I'm not a Windows person at all - been on a Linux desktop for almost 12 years. Thanks - John
There are a few ways to do it, XP/2003 and later:
tasklist | findstr -i vcxsrv >NUL
Check errorlevel, 0=hit, 1=miss.
Cheers, Daniel
Thanks, Phil