7,023 questions
Hello,
You can try something like :
Get-ADGroup -Filter * -property * | Export-csv -path groups.csv -delimiter ";" -notypeinformation
Get-ADComputer -Filter * -property * | Export-csv -path computers.csv -delimiter ";" -notypeinformation
You will need the Active Directory PowerShell module
Best Regards,