Hello i'm currently working on a Admin program that do a lot of thing.
In the end it launch another program. I have the username i want to launch it. But not the password.
Can i with ProcessStartInfo run as my AD user without having the password?
Like a su in linux. Admin don't need to know user pass to su into their account.
My code is in C#
And ATM i use it like this
Process.Start(desktop + "\\Application");
Application is the desktopShortcup to launch my app.