Re: [Mono-list] Linux: RunAS with System.Diagnostics.Process fails

2016-07-05 Thread webman
; To: Mono-list@lists.ximian.com > Subject: Re: [Mono-list] Linux: RunAS with System.Diagnostics.Process fails > > On 01.07.2016 01:17, web...@manfbraun.de wrote: > > Hello ! > > > > I am just trying this: > > > > Process p = new Process(); > > ProcessStart

Re: [Mono-list] Linux: RunAS with System.Diagnostics.Process fails

2016-07-03 Thread Robert Jordan
On 01.07.2016 01:17, web...@manfbraun.de wrote: Hello ! I am just trying this: Process p = new Process(); ProcessStartInfo psi = new ProcessStartInfo(); SecureString password = ReadPassword(); psi.UserName = args[0]; psi.FileName = args[1]; psi.UseShellExecute = false; psi.Password = password;

[Mono-list] Linux: RunAS with System.Diagnostics.Process fails

2016-06-30 Thread webman
Hello ! I am just trying this: Process p = new Process(); ProcessStartInfo psi = new ProcessStartInfo(); SecureString password = ReadPassword(); psi.UserName = args[0]; psi.FileName = args[1]; psi.UseShellExecute = false; psi.Password = password; . This works naturally on Linux too - but