Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi Power BI Community,
I've been tasked to deploy Power BI to an undefined amount of users. I have an install script which works well
Start-Process -FilePath msiexec.exe -ArgumentList /i, C:\Documents\PBI\Install\PBIDesktop_x64.msi, /passive, ACCEPT_EULA=1 -Wait
I've looked up forum after forum, and I'm struggling to automate de-installation. Using .msi's switch /X, I need the Product Code for Power BI to uninstall. The product code below was from here
Start-Process -FilePath msiexec.exe -ArgumentList /X{6BD53F08-57BA-4CF1-94B0-F08151E41383}, /qn, /norestart -Wait
Are there any glaring/obvious omissions/mistakes on my part?
Thanks,
Ronan
Solved! Go to Solution.
Using the .msi file works .
Install
Start-Process -FilePath msiexec.exe -ArgumentList /i, $ProjectHome\PBIDesktop_x64.msi, /passive, ACCEPT_EULA=1 -Wait
Uninstall
Start-Process -FilePath msiexec.exe -ArgumentList /uninstall, $ProjectHome\PBIDesktop_x64.msi, /passive, /norestart -Wait
Hope that helps someone else too
Ronan
Using the .msi file works .
Install
Start-Process -FilePath msiexec.exe -ArgumentList /i, $ProjectHome\PBIDesktop_x64.msi, /passive, ACCEPT_EULA=1 -Wait
Uninstall
Start-Process -FilePath msiexec.exe -ArgumentList /uninstall, $ProjectHome\PBIDesktop_x64.msi, /passive, /norestart -Wait
Hope that helps someone else too
Ronan
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 45 | |
| 44 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 73 | |
| 71 | |
| 34 | |
| 33 | |
| 31 |