Today I had to remove an outdated alterante FileShareWitness entry from a customers’ DAG.
Within the Exchange Management Console it’s not possible to remove but only to replace the alternate FSW – the alternate FSW must not be empty.
The solution for this problem is using ADSIEdit to remove the alternate FSW entry:
Navigate to this path:
CN=Configuration,DC=DOMAIN,DC=LOCAL
CN=Services
CN=Microsoft Exchange
CN=EXCHANGE_ORG
CN=Administrative Groups
CN=Exchange Administrative Group (FYDIBOHF23SPDLT)
CN=Database Availability Groups
CN=YOUR-DAG-NAME -> Right click properties
Klick “Modify” and than hit “Delete” for the follwoing attributes:
msExchAlternateFileShareWitness
msExchAlternateFileShareWitnessDirectory
Cheers,
Chris
THANKS BRO
I found a powershell command to do it. It worked for me with Exchange 2010 SP3 RU10. Just insert your dag name in quotes.
Set-DatabaseAvailabilityGroup -Identity “MyDagname” -AlternateWitnessDirectory $null -AlternateWitnessServer $null