Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Is it possible to share multiple workspaces at once?

Hi! 

I have multiple workspaces for my clients. 
Now we have the scenario that I have 50+ workspaces and a new colleague who needs acces to all of them... do I need to share each workspace individually or is there a way to easily share multiple workspaces at once?

Thanks in advance!

1 ACCEPTED SOLUTION
AntrikshSharma
Super User
Super User

@Anonymous You can run this PowerShell script to add the user in each workspace with a specified role.

# Install-Module -Name MicrosoftPowerBIMgmt
Login-PowerBI
$Workspaces = Get-PowerBIWorkspace
$UserEmail = "JoniS@8b6zhg.onmicrosoft.com"
$AccessType = "Viewer" #Replace with Member, Admin, Contributor

foreach($w in $Workspaces){
    Add-PowerBIWorkspaceUser -Scope Organization -Id $W.Id -UserPrincipalName $UserEmail -AccessRight $AccessType
}

 

View solution in original post

3 REPLIES 3
AntrikshSharma
Super User
Super User

@Anonymous You can run this PowerShell script to add the user in each workspace with a specified role.

# Install-Module -Name MicrosoftPowerBIMgmt
Login-PowerBI
$Workspaces = Get-PowerBIWorkspace
$UserEmail = "JoniS@8b6zhg.onmicrosoft.com"
$AccessType = "Viewer" #Replace with Member, Admin, Contributor

foreach($w in $Workspaces){
    Add-PowerBIWorkspaceUser -Scope Organization -Id $W.Id -UserPrincipalName $UserEmail -AccessRight $AccessType
}

 

Anonymous
Not applicable

Thanks @AntrikshSharma!

aj1973
Community Champion
Community Champion

@Anonymous 

https://learn.microsoft.com/en-us/power-bi/admin/service-admin-portal-workspace

aj1973_0-1666626265871.png

 

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors