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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
khassan
New Member

Power BI Report Server "PUBLISH" Option - DISABLE / Remove

With Power BI Report Server Jan-2023 release, is it possibel to "DISABLE" or "REMOVE" Publish option?

2 REPLIES 2
mseltene
New Member

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
SgtSmurf87
New Member

To disable the Publish feature in SQL Server Reporting Services (SSRS) 2019,

  1. Connect to the Reporting Services instance in SQL Server Management Studio (SSMS).
  2. Right-click the instance name, select Properties.
  3. In the "Select a page" pane, select Advanced.
  4. Under User-Defined, set these items to False
    1. EnablePowerBIReportExportData
    2. EnablePowerBIReportMigrate

I did not have to restart Reporting Services for these changes to take effect.

 

SSRS 2019 Disable PowerBI Publish.png

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors