Hi,
I need to make changes to many disks and file server resources at once in my cluster.
The settings I need to change are in the common properties for resources:
http://msdn.microsoft.com/en-us/library/aa372230(v=vs.85).aspx
RestartPeriod
RestartThreshold
SeperateMonitor
but when I use this:
get-clusterresource "cluster disk 104" | get-clusterparameter
All I get are private properties about the disk. I don't understand how I can bulk change the parameters on the disks or file servers in powershell for common parameters. Does the set-clusterparameter still work for these even though they are not displayed?
I really do not want to do this manually in the GUI.
Just to clarify, I wanted something like this:
get-clustergroup "Group 1" | get-clusterResource | Where {$_.ResourceType -like "Physical Disk"} | set-clusterparameter -name RestartPeriod -value xxxxx
But I am not sure this will work as if I use "Get" I do not see that particular common parameter listed
Thanks