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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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