28 Kasım 2015 Cumartesi

c# başka bir exeyi yönetici olarak çalıştırma

ProcessStartInfo info = new ProcessStartInfo("Process.exe");
info.UseShellExecute = true;
info.Verb = "runas";
Process.Start(info);