Run another Application out of my Application - with the same rights
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, i'm in testing with the Process and ProcessStartInfo Classes. But it doesn't work as aspected. I want to run another application from my application withe the same rights, i mean with the same user name. Any suggestions? My Code:
ProcessStartInfo startinfo = new ProcessStartInfo();
startinfo.FileName = @"C:\Test.exe";Process.Start( startinfo );
I tried to using the UserName Property, but it doesn't work, because i have to use the password also. But i dont know the password of the actuall user. (Keyword: terminal Server) But with the code like the example, the Apllication ist startet as SYSTEM. Can anybody help me?