Forum Discussion
khassan
3 years agoRegular Visitor
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?
mseltene
2 years agoNew 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