.Net Run a process as Administrator with C# programmatically 7 years ago Samir Daoudi If you need to run external program from C# code with Administrator privileges, this code might help. ProcessStartInfo info = new ProcessStartInfo("Process.exe"); info.UseShellExecute = true; info.Verb = "runas"; Process.Start(info); 3 If you need to run external program from C# code with Administrator privileges, this code might help. ProcessStartInfo info = new ProcessStartInfo("Process.exe"); info.UseShellExecute = true; info.Verb = "runas"; Process.Start(info); Share this:TweetWhatsAppPrint 3 Tags: .Net Continue Reading Previous ASP.net Client/Server side state management recommendationsNext ASP.net handler for images