C# procees start als admin

Hallo,

ich möchte in C# eine andere adnwendung starten. Also so:
System.Diagnostics.Start(@„notepad“);
bloß mit admin rechten.

Danke schonma
Flo

http://lmgtfy.com/?q=C%23+anwendung+als+admin+starten

Bitte.

http://lmgtfy.com/?q=C%23+anwendung+als+admin+starten

Bitte.

Danke,
ich hab eh schon was gefunden…

ProcessStartInfo myProcess = new ProcessStartInfo(textBox21.Text + „cmd.exe“);
myProcess.UserName = textBox19.Text;
SecureString password = new SecureString();
password.AppendChar(‚t‘);
password.AppendChar(‚e‘);
password.AppendChar(‚s‘);
password.AppendChar(‚t‘);
myProcess.Password = password;
myProcess.UseShellExecute = false;
Process.Start(myProcess);

Bloß habe ich da noch ein Problem…
ich möchte, dass man auf der Form in ein Feld das Passwort gibt, in einer anderen den Benutzername. Das mit dem Benutzername klappt, bloß nicht mit dem Passwort, weil es ein secure string ist. Gibt es noch eine andere möglichkeit?

Mfg Flo