手动检查来自受信任域的用户

发布于 2024-11-27 10:42:26 字数 40 浏览 0 评论 0原文

如何检查受信任域中的用户是否存在,然后如何检查同一用户是否未启用?

How can I check a user in a trusted domain exists and after that how can I check that the same user is not enabled?

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

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

发布评论

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

评论(1

梦亿 2024-12-04 10:42:26

由于这是在 SO 上发布的,我假设您需要一个编程解决方案。

由于您没有指定语言,我也假设 Powershell 是可以接受的。

测试用户是否存在于域中:

$netbiosdomainname = "DOMAIN"
$username = "johndoe"

try {
    [adsi]::Exists("WinNT://$netbiosdomainname/$username,user")
}
catch {
    ... user does not exist ...
}

请参阅 这篇文章了解为什么需要 try/catch。

测试用户是否启用:

$user = [adsi]"WinNT://$netbiosdomainname/$username,user"

if ($user.AccountDisabled) {
    ... account is disabled ...
}

Since this was posted on SO, I will assume you want a programming solution.

Since you didn't specify a language, I will also assume that Powershell is acceptable.

Test if user exists in domain:

$netbiosdomainname = "DOMAIN"
$username = "johndoe"

try {
    [adsi]::Exists("WinNT://$netbiosdomainname/$username,user")
}
catch {
    ... user does not exist ...
}

See this article for why this needs try/catch.

Test if user enabled:

$user = [adsi]"WinNT://$netbiosdomainname/$username,user"

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