Overview
Jamie is deployed as a Line-of-Business (LOB) MSI app via Microsoft Intune. The MSI performs a per-machine installation (InstallScope="perMachine"), installing into C:\Program Files\Jamie for all users on the device.
Jamie includes a built-in auto-updater (
JamieUpdaterService), so Intune should only handle the initial deployment — not ongoing version management.Download
Download the enterprise MSI
Jamie_5.6.52_x64_en-US.msi
Adding the app in Intune
1
Open the app catalog
Navigate to Microsoft Intune admin center → Apps → All apps → Add.
2
Select the app type
Choose Line-of-business app.
3
Upload the installer
Upload the
.msi file.App information
Ignore app version — why this matters
The Ignore app version setting must be set to Yes. You’ll find it in the App information pane when configuring the LOB app. Jamie ships with a built-in update service (JamieUpdaterService) that automatically updates the application in the background. If Ignore app version is left at No (the default), Intune enforces the originally deployed MSI version, which creates a race condition:
1
Intune deploys version X
2
The Jamie auto-updater updates to version Y
3
Intune detects a version mismatch and reinstalls version X
4
The updater updates again — creating an endless reinstall loop
What the MSI installs
MSI UpgradeCode:
7f2a9f62-56a0-4f67-9e14-1c18553b1b60
Assignments
Assign the app to the appropriate device groups as Required for automatic deployment, or Available for enrolled devices if users should install it from Company Portal. Since this is a per-machine install, target device groups rather than user groups for the most predictable behavior.Uninstall
The MSI supports standard uninstall via Intune. TheJamieUpdaterService is automatically stopped and removed on uninstall. All shortcuts, registry entries, and the install directory are cleaned up.
Notes
- Do not use Intune app supersedence with auto-update enabled for Jamie — the built-in updater handles all version management.
- The MSI uses
REINSTALLMODE=amusandAllowSameVersionUpgrades="yes", so re-deploying the same version is safe and non-destructive. - The WebView2 runtime is bundled and bootstrapped by the installer if it isn’t already present on the device.

