nimos001's Accepted Solutions

Closing this out, my answer it to remove the link between VC's and then perform upgrades using multiple single sign-on instances in different locations and after both sites are upgraded link them... See more...
Closing this out, my answer it to remove the link between VC's and then perform upgrades using multiple single sign-on instances in different locations and after both sites are upgraded link them back with the configuration utility.
I was just coming back to post that I figured out what I needed. (Changes Network Adapter already present) Get-Cluster %cluster_name% |Get-VM  |Get-NetworkAdapter |Set-NetworkAdapter -Network... See more...
I was just coming back to post that I figured out what I needed. (Changes Network Adapter already present) Get-Cluster %cluster_name% |Get-VM  |Get-NetworkAdapter |Set-NetworkAdapter -NetworkName DR_Private -Confirm:$false (Adds New Network Adapter to CLUSTER) Get-Cluster %cluster_name% |Get-VM |New-NetworkAdapter -NetworkName DR_Private -StartConnected -Confirm:$false -Brian