Forum Discussion
printscreen
Jan 14, 2021Brass Contributor
Power shell script which shows list of RBAC role, Azure resource for all Users in Azure
Hi. I'm pretty new to PowerShell and trying out things. I'm trying to form a PowreShell script which shows list consists of Azure resource name, RBAC role, Username against it( all users included eve...
AndySvints
Jan 15, 2021Iron Contributor
Hello printscreen,
You are using wrong parameter name it should be GroupDisplayName not DisplayName
$new=Get-AzADGroupMember -GroupDisplayName $RoleAssignments.DisplayName
Hope that helps.