不管它们是主动节点还是被动节点,我们如何获取群集组中所有 Windows AD 计算机帐户的列表?
使用 PowerShell 模块:https://learn.microsoft.com/en-us/powershell/module/failoverclusters/?view=windowsserver2022-ps这只能显示活动的集群节点。
使用以下命令:
Get-ADComputer -Filter { (ServicePrincipalNames -like '*Cluster*') } -Properties 'OperatingSystem', 'ServicePrincipalNames'
只能显示集群组名称
非常感谢您的任何意见和建议,并提前谢谢您。