我正在使用this Impersonator类来模拟域帐户以访问网络共享,如下所示:
using(new Impersonartor(username, domain, password))
{
//Code Here
}
从网络共享中复制文件可以正常工作:
using(new Impersonartor(username, domain, password))
{
CopyAll(uncPath, localPath)
}
但是,使用Process.Start查看资源管理器中的UNC共享会引发“登录失败:未知用户名或密码错误”:
using(new Impersonartor(username, domain, password))
{
Process.Start(uncPath)
}
怀疑Impersonator类有问题,我尝试手动向ProcessStartInfo提供凭据,如下所示:
System.Diagnostics.ProcessStartInfo viewDir = new System.Diagnostics.ProcessStartInfo(uncPath);
viewDir.UseShellExecute = false;
viewDir.Domain = netCred.Domain;
viewDir.UserName = netCred.UserName;
viewDir.Password = ConvertToSecureString(netCred.Password);
System.Diagnostics.Process.Start(viewDir);
仍然没有快乐。请注意,我确信我的netCred(NetworkCredential)是正确的,因为我以前曾经使用过经过身份验证的资源。
那么,如何使用网络凭证在资源管理器中查看UNC路径?
答案 0 :(得分:3)
我今天遇到了同样的问题,这对我有用:
private void OpenNetworkPath(string uncPath)
{
System.Diagnostics.Process.Start("explorer.exe", uncPath);
}
答案 1 :(得分:0)
不要将uncPath传递给Process.Start
,而是尝试在Process.Start
中启动“资源管理器”,并将uncPath作为ProcessStartInfo
的{{1}}属性传递。
Arguments