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
App information
| Setting | Value |
|---|---|
| Name | Jamie |
| Publisher | Jamie (Wespond UG) |
| App Install Context | Device (pre-selected, per-machine MSI) |
| Ignore app version | Yes |
| Command-line arguments | /qn |
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:
Setting Ignore app version = Yes tells Intune to only verify that Jamie is installed, without enforcing a specific version. This is the Microsoft-recommended approach for MSI apps with self-updating installers.
What the MSI installs
| Component | Location / Details |
|---|---|
| Main executables and resources | C:\Program Files\Jamie\* |
| Registry | HKLM\Software\Jamie (Wespond UG)\Jamie — stores InstallDir and Version |
| Deep link protocol | jamie:// (registered in HKLM\Software\Classes) |
| Shortcuts | Desktop + Start Menu |
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.

