集群感知更新设置 – VirtualComputerObjectName被忽略

我试图build立群集感知更新,但它总是失败,并出现以下错误:

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”计算机对象,并完全控制了“集群”对象。

但是,当我运行该命令时,它仍然尝试使用随机名称创build一个计算机对象,看起来完全忽略了VirtualComputerObjectName参数。 有什么想法吗?

在这篇文章中,您可以find如何正确预先login计算机帐户。 从安全的angular度来看,您已经授予了帐户太多的权限。

看着powershell命令我缺less参数: -GroupName cau