gpt4 book ai didi

powershell - 如何找出 : Domain Administrator or Not?

转载 作者:行者123 更新时间:2023-12-03 18:20:23 27 4
gpt4 key购买 nike

我有一个帐户,例如(MyDomain\User1),它只能访问安装了 Windows Server 2008 R2 的 VM,没有其他权限。

我根本无法访问 Active Directory (AD) 和域 Controller (DC)。

如何判断此特定帐户 (MyDomain\User1) 是否为域管理员?是否有任何 Windows PowerShell 命令?

谢谢 !

最佳答案

很简单,只需检查当前用户是否是域管理员组的成员。

$CurrentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent()
$WindowsPrincipal = New-Object System.Security.Principal.WindowsPrincipal($CurrentUser)

if($WindowsPrincipal.IsInRole("Domain Admins"))
{
Write-Host "Currently running as a Domain Admin"
}
else
{
Write-Host "Keep dreaming, you're not a Domain Admin."
}

关于powershell - 如何找出 : Domain Administrator or Not?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25103147/

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