C
ChUIMonster
Guest
So this special "user" a process running on a Windows PC? How, exactly, does it get started? You have to be *really* careful with this kind of stuff on Windows. If you are just logging in and starting it or if you are starting it from "scheduled tasks" then it will be killed anytime the same userid logs off from that PC. Even if that particular session had nothing to do with launching the special process. To run such a process safely you need to either run it as a service (I like a utility called NSSM to control that) or you can setup a scheduled task so long as the userid for the task is a "functional id", that is a userid that NEVER logs in (you also need to make sure the password doesn't expire).
Continue reading...
Continue reading...