Forum Discussion
Registry key for Update Notifications?
- 10 years ago
Found it.
C:\Users\user\AppData\Local\Microsoft\Power BI Desktop\User.zip\UserInterface\Settings.xml
<Entry Type="DisableUpdateNotification" Value="l1" /> - Update Notifications Off
<Entry Type="DisableUpdateNotification" Value="l0" /> - Update Notifications On
This makes it very difficult to add logic to an install script/package. Very strange they went this way instead of registry values.
I have struggled for months to find a solution to disable update notification for powerBI.
Here is silent switches which i used to deploy using SCCM and also to disable update notification. Hope this help others..
msiexec.exe" /i "PBIDesktop_x86_JAN.msi" /qb /norestart ACCEPT_EULA=1 DISABLE_UPDATE_NOTIFICATION=1
Thanks
Thank you for this! I've passed it on to our SCCM to get added to our install/update script.