如何使用 Windows 服务获取 Windows 7 中的当前用户凭据?

发布于 2024-11-27 00:00:54 字数 618 浏览 1 评论 0原文

我正在尝试使用 Windows 7 中的 Windows 服务获取当前用户凭据。

当我在调试模式下运行下面的代码时(请注意,当我在调试模式下运行此代码时,winservice 在我的用户而不是本地系统上运行),没有问题。但是,当 WinService 在计算机上的 LocalSystem 帐户上运行时,当我将代码作为“已发布”(不是调试)和 Windows 服务运行时,我无法从活动目录获取当前用户?

using (DirectoryEntry de = new DirectoryEntry("LDAP://" + DomainName))
{
    using (DirectorySearcher adSearch = new DirectorySearcher(de))
    {
        adSearch.Filter = "(sAMAccountName=" + Environment.UserName + ")";
        SearchResult adSearchResult = adSearch.FindOne();

        UserInternalEmail = GetProperty(adSearchResult, "mail");
    }
}

提前致谢,

I'm trying to get currently user credentials with a windows service in Windows 7.

When I run the code below on DEBUG mode (notice that, when I run this on DEBUG mode, the winservice runs on my User instead of LocalSystem), there is no problem. However, when the WinService runs on LocalSystem account on the machine I cannot get current user from active directory when I run the codes as "Released" (not debug) and as Windows Service?

using (DirectoryEntry de = new DirectoryEntry("LDAP://" + DomainName))
{
    using (DirectorySearcher adSearch = new DirectorySearcher(de))
    {
        adSearch.Filter = "(sAMAccountName=" + Environment.UserName + ")";
        SearchResult adSearchResult = adSearch.FindOne();

        UserInternalEmail = GetProperty(adSearchResult, "mail");
    }
}

Thanks in advance,

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

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

发布评论

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

评论(1

一花一树开 2024-12-04 00:00:54

LocalSystem 在本地系统之外没有任何权限,因此很明显 AD/LDAP 将拒绝它的查询。只需在 AD/LDAP/域帐户下运行该服务即可。

LocalSystem has no rights outside the local system, so it is pretty clear the AD/LDAP is going to reject it's query. Just run the service under a AD/LDAP/domain account.

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