gpt4 book ai didi

c# - 使用用户名和密码在 C# 中启动进程会引发 "Access is Denied"异常

转载 作者:太空狗 更新时间:2023-10-29 19:43:26 25 4
gpt4 key购买 nike

在运行模拟的 .NET 3.5 Web 应用程序中,我试图通过以下方式执行进程:

var process = new Process 
{ StartInfo =
{ CreateNoWindow = true,
FileName = "someFileName",
Domain = "someDomain",
Username = "someUserName",
Password = securePassword,
UseShellExecute = false
}
};

process.Start();

-在 web.config 中将信任模式更改为完全未修复。

-注意 var securePassword 是在代码前面设置的 secureString。

这将引发一个异常,其消息为“拒绝访问”。如果我删除用户名和密码信息,异常就会消失,但进程会以 aspnet_wp 而不是我需要的用户身份启动。

我在多个论坛上看到过这个问题,但从未见过提供的解决方案。有什么想法吗?

最佳答案

您可以使用允许您指定凭据的 ProcessStartInfo。诀窍在于密码是安全字符串,因此您必须将其作为字节数组传递。

代码可能类似于:

Dim startInfo As New ProcessStartInfo(programName)
With startInfo
.Domain = "test.local"
.WorkingDirectory = My.Application.Info.DirectoryPath
.UserName = "testuser"
Dim pwd As New Security.SecureString
For Each c As Char In "password"
pwd.AppendChar(c)
Next
.Password = pwd

'If you provide a value for the Password property, the UseShellExecute property must be false, or an InvalidOperationException will be thrown when the Process..::.Start(ProcessStartInfo) method is called.
.UseShellExecute = False

.WindowStyle = ProcessWindowStyle.Hidden
End With

关于c# - 使用用户名和密码在 C# 中启动进程会引发 "Access is Denied"异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/121676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com