On Mon, 2011-01-31 at 12:18 +0000, --[ UxBoD ]-- wrote:
----- 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
I would very much imagine there is a Qt Windows API hook for querying the process stack. That would be far faster than making an external call. I'm not sure that there is although I haven't actively developed in Qt for many years - John