Perhaps DropBox is blocked where you tried to access my scripts? I am not aware of any permissions issues, and nobody else has raised this as an issue.
]]>–====> Already in place
— Get information about any AlwaysOn AG cluster this instance is a part of (Query 16) (AlwaysOn AG Cluster)
SELECT cluster_name, quorum_type_desc, quorum_state_desc
FROM sys.dm_hadr_cluster WITH (NOLOCK) OPTION (RECOMPILE);
–====> please add
— Get information about any AlwaysOn AG cluster quorumvotes (AlwaysOn AG Cluster)
SELECT member_name, member_state_desc, number_of_quorum_votes
FROM sys.dm_hadr_cluster_members
–> thank you
——