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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

Top Solution Authors