nt service to interact with desktop
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Can a nt service running under administrator account interact with desktop. thanks in advance
-
Can a nt service running under administrator account interact with desktop. thanks in advance
Since services run before the user logs in, you will have to be carefull with what you do. The desktop may not be present when you expect it to be. It is better to write an application that interfaces with the service and have a GUI less service IMO. Ant.