如何在当前用户下启动一个进程?
我想在Windows XP中的当前用户下运行一个EXE文件。 我想要执行ProcessStartInfo类和Process.Start()方法。
在当前用户中没有密码。
所以我该怎么做?
Process.Start
默认在当前帐户下执行。 您不必提供凭证即可发生。
你可以简单地使用
Process.Start(your_exe);
链接地址: http://www.djcxy.com/p/61107.html
上一篇: How to start a process under current User?
下一篇: Process.Start() not spawning new process under the same user