Windows-Server-2008-R2
如何使用 Powershell 配置集群共享?
當我嘗試在 Windows 2008 R2 上配置群集共享時,我收到以下錯誤:
PS C:\> get-clusterresource share3 Name State Group ResourceType ---- ----- ----- ------------ Share3 Offline Test File Share PS C:\> get-clusterresource share3|set-clusterparameter path "c:\program files (x86)" Set-ClusterParameter : Unable to save property changes for 'Share3'. The cluster resource dependency cannot be found At line:1 char:48 + get-clusterresource share3|set-clusterparameter <<<< path "c:\program files (x86)" + CategoryInfo : NotSpecified: (:) [Set-ClusterParameter], ClusterCmdletException + FullyQualifiedErrorId : Set-ClusterParameter,Microsoft.FailoverClusters.PowerShell.SetClusterParameterCommand
Google和必應對此沒有任何用處。
有任何想法嗎?
當我使用 cluster.exe 時也會發生同樣的事情。Powershell 和 cluster.exe 都以管理員身份執行。
原來我必須首先為共享配置依賴項:
add-clusterresourcedependency share3 some_network_name_in_the_same_group
然後它工作。