Greetings - I need a simple list of AD groups based on group name. In the output I need name only, output to a *.csv file.
Get-ADGroup -Filter {name -like “Magento”} gets me more info than I need.
$Obj | Export-Csv c:\users\username\downloads\magento-groups.csv errors out.
Thanks for the help.