I am trying to create a service with C # that starts a process that can appear on the login screen in Windows XP.
I found code that does this in C ++. C ++ code is for a service that creates another process with the STARTUPINFO.lpDesktop parameter set to "WinSta0 \ WinLogon". The created process is then displayed on the Windows login screen. It seems I canβt find a way to specify the "desktop" of the new process in C # using the System.Diagnostic.Process class.
Does anyone know how to do this using C #?
source share