A program initiated by the system account on terminal services is
running continually at %100 and I don't have the option to shutdown the
server as it's a main data server.
Any ideas would be apreciated.
Running the task manager as System will likely allow you to stop the
process. You can use PsExec from Sysinternals.com, however one of the
simplest ways to do this, which works on NT to 2003, is to use AT to
schedule launching of TaskManager.
at 6:00 /interactive taskmgr.exe
You don't have to worry about the exact time because you can go to
Scheduled Tasks (usually in Control Panel) then right-click, Run.
This requires the "Task Scheduler" or Shchedule service to be running,
which is the default, and the tasks must be set to run under System,
also the default.
If using PsExec, then use something like this.
psexec -s -i \\%computername% taskmgr.exe
You could even launch TaskKill or PsKill, with the aforementioned
techniques, to try to end the task directly, but let's find out if it
can be ended with Task Manager first.
Clay Calvert
(e-mail address removed)
Replace "W" with "L"