Microsoft now distributes Power BI Desktop as an MSIX package installed per-user via the Microsoft Store or direct download. This creates challenges for IT admins needing system-wide deployment, consistent versioning, and SCCM/Intune integration.
Once your repackaged MSI or PSADT script is ready:
SCCM (MECM)
Microsoft Intune
Power BI tries to sign in with the current user. Use a transform (MST) or a custom action to set:
[HKEY_CURRENT_USER\Software\Microsoft\Microsoft Power BI Desktop\Options]
"SkipSignInDialog"=dword:00000001
Deploy this via Group Policy Preferences after the repack.
Short answer: Yes, for internal deployment. Microsoft’s licensing allows IT administrators to repackage Microsoft software for internal deployment within their organization, provided you do not modify the core binaries or redistribute them externally. You are simply wrapping the installer. repack latest power bi desktop version work
When you repack, custom organization visuals may still trigger security warnings. Pre-approve them via the CustomVisuals folder in ProgramData.
Run the official latest Power BI Desktop installer interactively.
PBIDesktopSetup_x64.exe /quiet
Wait for completion. Then, launch Power BI Desktop and apply customizations: Microsoft now distributes Power BI Desktop as an
Close the application.
Before diving into the repacking process, let’s understand the problem.
| Aspect | Standard Installer | Enterprise Need | |--------|--------------------|------------------| | Installation scope | Per-user (AppData) | Per-machine (Program Files) | | Admin rights | Required every time | One-time elevation | | Customization | None | Pre-configured settings, data sources | | Silent deployment | Limited | Full automation (SCCM/Intune) | | Version control | Manual updates | Controlled rollouts | Microsoft Intune
When you run the official PBIDesktopSetup_x64.exe, it extracts and installs directly to %localappdata%\Microsoft\Power BI Desktop. This means:
Therefore, repacking is the only reliable method to treat Power BI Desktop as a first-class enterprise application.