C#:加载漫游配置文件并以用户身份执行程序
在应用程序中,我需要使用其他用户的凭据执行其他程序。 目前我使用 System.Diagnostics.Process.Start< /strong> 执行程序:
public static Process Start(
string fileName,
string arguments,
string userName,
SecureString password,
string domain
)
但是此功能不会从网络加载漫游配置文件 - 这是必需的。
我可以使用“runas /profile ...”加载配置文件并执行命令,但这会要求输入密码。 一定有更优雅的方式……
但是在哪里呢?
In an application I need to execute other programs with another user's credentials. Currently I use System.Diagnostics.Process.Start to execute the program:
public static Process Start(
string fileName,
string arguments,
string userName,
SecureString password,
string domain
)
However this function does not load the roaming profile from the net - which is required.
I could use "runas /profile ..." to load the profile and execute the command, but that would ask for a password. There must be an more elegant way...
But where?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的解决方案(基于leppie的提示):
My solution (based on leppie's hint):
System.Diagnostics.ProcessStartInfo.LoadUserProfile
System.Diagnostics.ProcessStartInfo.LoadUserProfile