Export security group members to a CSV file using Powershell:
Import-Module ActiveDirectory
Get-ADGroupMember -identity sec_group_name | select name | Export-csv C:\Temp\filename.csv -NoTypeInformation
If you just wat the username, use “select samaccountname”.
Btw RSAT needs to be installed.