Issues seen this year:

  1. Email Bouncing from Simply Voting, affected 2 users (minor)
  2. Confusion about how to vote. Messaging just says "Vote Online", recommend changing that to "Ballot Arrives by Email from Simply Voting"
    1.  
  3. Website recommendations:
    1. It makes it too easy to Cancel Registration... recommend making that much harder. 
    2. Recommend showing the member what email address will be used. (Yes, they just used it to log in, but make them see the Address)
  4. No In Person Voting was allowed this year
  5. Member suggested using an email list instead of an individual for contact on voting issues. (e.g. Admin@ )

Purpose

Our Bylaws require an annual election of our BoD, this page details the procedures that were used in the most recent election. These procedures should be updated whenever a change is made.

Procedure

Set the date and location of the Annual BoD Election

This date should be selected as soon as is reasonable and the room booked on the Event calendar.

BOD to Set the Schedule, Recommend defining schedule in January, or February at the latest.


Meet the Candidates Format

The 2 hour meeting for meet the candidates was tightly managed for time.

Voting Tool used: SimplyVoting.com


# Script to pull list of voting members into CSV for voting
# 2026-04-11
#

Import-Module ActiveDirectory

$GroupName = "Voting Members"

# Get members and store in variable
$members = Get-ADGroupMember -Identity $GroupName -Recursive |
    Get-ADUser -Property DisplayName, Mail, Title, Department |
    Select-Object Name, DisplayName, SamAccountName, Mail, Title, Department

# Export to CSV
$members | Export-Csv -Path "M:\tjsmith\voting_members.csv" -NoTypeInformation

# Output total count to console
Write-Host "Total users exported: $($members.Count)"