.Net Run a process as Administrator with C# programmatically 8 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 How to Fix The Server Could Not Complete your Request SharePoint 2013?Next TOP 10 best practices for document libraries in SharePoint