Hi,
In my sofs cluster I have 3 networks LAN and SMB1 and SMB2
Now I have Excluded the LAN from my SOFS resource and this worked fine
$sofs = Get-ClusterResource "sofs1"
$net = Get-ClusterNetwork | ? name -Match "LAN"
Set-ClusterParameter -InputObject $sofs -Name ExcludeNetworks -Value $($net.Id)
But now I want to undo this. but it all failed So I need some help.
I used the Set-ClusterParameter -InputObject $sofs -Name ExcludeNetworks -Value $($net.Id) -delete
Stopped the resource etc all failed.
How Can I undo the exclude network ?
Grt,
Peter