Process.GetProcessById如何传递凭据

发布于 2024-08-30 22:48:02 字数 200 浏览 1 评论 0原文

我需要查明进程是否在远程计算机上运行,​​我知道进程 ID 和远程电脑 IP。怎么做呢? 我已尝试下面的代码,但找不到传递凭据以登录远程计算机的方法。使用下面的代码,我的访问按预期被拒绝。

Process engineProcess = Process.GetProcessById(PID, IP);

问候, 托马斯

I need to find out is Process is running on remote machine or not, I know process id and remote pc ip. How to do that?
I have tried code below but do not find way to pass credentials to login to remote machine. Using code below I get access denied as expected.

Process engineProcess = Process.GetProcessById(PID, IP);

Regards,
Tomas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明天过后 2024-09-06 22:48:02

您可以尝试通过模拟更改当前线程的身份的一种方法。以下是如何实现的示例:

http://support.microsoft.com/kb/306158< /a>

查看“在代码中模拟特定用户”部分

One way you could try it by changing the Identity of current thread by impersonating. here is an example of how to implement such:

http://support.microsoft.com/kb/306158

look under the section "Impersonate a Specific User in Code"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文