我可以使用Powershell从域中的客户端计算机查询AD吗?


1

我有一个DC(Windows Server 2008 R2),我想对AD运行一些Powershell查询。在任何DC上均未安装Powershell ISE。是否可以在我的工作站(Windows 7)上本地安装Powershell ISE,然后将其指向DC以查询AD?

Answers:


1

根据您的个人经验,只要您是域管理员,就可以确认。在运行与AD相关的cmdlet之前,您需要在Powershell会话中导入Active Directory模块。该cmdlet很简单

导入模块ActiveDirectory

完成此操作后,您可以运行Get-ADUser,Unlock-ADAccount等cmdlet。


2
为此,您需要在客户端PC上安装远程服务器管理工​​具(RSAT)。对于Windows 7 microsoft.com/zh-CN/download/details.aspx?id=7887或在Windows 10 1809或更高版本上,您需要从按需设置功能的“添加功能”部分安装,一次安装1个组件,或使用powershell命令Get-WindowsCapability -Online | foreach {$_.Name -like "*RSAT*" -and $_.State -eq "NotPresent"} | Add-WindowsCapability -Online安装它们。
BeowulfNode42

感谢您指出了这一点。已经好久了,我忘记了那部分。
Charles Burge

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.