Dag: 7 maart 2023

To display the members of a group in Active Directory with their full name in a single line, you can use the following PowerShell command: Powershell Get-ADGroupMember “Group Name” | ForEach-Object {Get-ADUser $_.samaccountname -Properties DisplayName | Select-Object -ExpandProperty DisplayName} | Out-String -Width 4096 Replace “Group Name” with the name of the group you want to […]

Meer lezen