群集感知更新设置 - 忽略 VirtualComputerObjectName

群集感知更新设置 - 忽略 VirtualComputerObjectName

我正在尝试设置群集感知更新,但总是失败并出现以下错误:

Add-CauClusterRole : Unable to create the CAU clustered role because a Network Name resource could not be created.
This can occur if a computer account (virtual computer object) for the role could not be created in the domain. Check
the event log for more information. If the cluster name account does not have permissions to create the object, you
can pre-stage a computer account in Active Directory. Then, use the Add-CauClusterRole Windows PowerShell cmdlet with
the VirtualComputerObjectName parameter to create the CAU clustered role. For more information about pre-staging
computer accounts, see http://go.microsoft.com/fwlink/p/?LinkId=237624.
At line:1 char:1
+ Add-CauClusterRole -ClusterName cluster -Force -CauPluginName Microsoft.Win ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (:) [Add-CauClusterRole], ClusterUpdateException
    + FullyQualifiedErrorId : CouldNotFindVcoName,Microsoft.ClusterAwareUpdating.Commands.AddCauClusterRoleCommand

以下是我正在使用的 PowerShell 命令

Add-CauClusterRole -ClusterName cluster -Force -CauPluginName Microsoft.WindowsUpdatePlugin -MaxRetriesPerNode 3 -CauPluginArguments @{ 'IncludeRecommendedUpdates' = 'False' } -StartDate "7/17/2013 3:00:00 AM" -DaysOfWeek 16 -WeeksOfMonth @(2) -VirtualComputerObjectName cau -EnableFirewallRules;

我已经在 Active Directory 中预留了“cau”计算机对象,并将完全控制权交给了“cluster”对象。

但是,当我运行该命令时,它仍然会尝试创建一个具有随机名称的计算机对象,似乎完全忽略了 VirtualComputerObjectName 参数。有什么想法吗?

答案1

本文您可以找到如何正确预设置计算机帐户。从安全角度来看,您授予该帐户的权限过多。

查看 powershell 命令我缺少以下参数:-GroupName cau

相关内容