在应用程序中,我需要使用其他用户的凭据执行其他程序。目前我使用System.Diagnostics.Process.Start来执行程序:
public static Process Start(
string fileName,
string arguments,
string userName,
SecureString password,
string domain
)
但是,此功能不会从网络加载漫游配置文件 - 这是必需的。
我可以使用“runas /profile ...”来加载配置文件并执行命令,但这会要求输入密码。一定有更优雅的方式...
但是哪里?