Hi!
I'm wondering if it is possible to change the default DNS update interval for a cluster name and it's resources?
As far as I can find out, it updates DNS every 24 hours if it's idle.
http://blogs.msdn.com/b/clustering/archive/2009/07/17/9836756.aspx
I know that I could create a "schedule task" With a PowerShell script and run:
get-cluster | Get-ClusterResource | ? {$_.resourceType -like "Network Name" -or $_.ResourceType -like "Distributed Network Name"} | Update-ClusterNetworkNameResource
But I'm wondering if there is some paramters I can change? I can not find any parameters With the get-clusterparameter cmdlet.
Thanks
Anders