what permissions does a windows service need to execute another process? System.Diagnostics.Process

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

what permissions does a windows service need to execute another process?
System.Diagnostics.Process process = System.Diagnostics.Process.Start(info);
just local administrator? any specific permitions?
 
Local administrator is enough. But in case you're talking about services...
does process spawn by that allowed to interact with desktop?

Try test and look at taskmanager to see if it runs.
 
Back
Top