Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
With Power BI Report Server Jan-2023 release, is it possibel to "DISABLE" or "REMOVE" Publish option?
To disable the Power BI publish features, you can use the following code:
select * from [reportserver].[dbo].[configurationinfo] where name like '%power%'
go
update [reportserver].[dbo].[configurationinfo] set value = 'False' where name = 'enablepowerbireportexportdata'
update [reportserver].[dbo].[configurationinfo] set value = 'False' where name = 'enablepowerbireportexportunderlyingdata'
update [reportserver].[dbo].[configurationinfo] set value = 'False' where name = 'enablepowerbireportmigrate'
go
To disable the Publish feature in SQL Server Reporting Services (SSRS) 2019,
I did not have to restart Reporting Services for these changes to take effect.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!