C# farklı bir exe dosyasını yönetici olarak nasıl çalıştırabiliriz ?
Buyrun kod;
Buyrun kod;
C#::
ProcessStartInfo info = new ProcessStartInfo("C:\\Windows\\notepad.exe");
info.UseShellExecute = true;
info.Verb = "runas";
Process.Start(info);