Hi KELLER LEA,
I’m following up to check whether the issue has been resolved. Feel free to reply if you need further information. If the information provided was helpful, please click "Accept Answer" to help others in the community. Thank you!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I’m deploying a standard CAD software package. On 90% of machines, it’s perfect. On the other 10%, it just says 'Failed' with an error code that translates to 'Unknown Error.' No logs in the temp folder, nothing in the Event Viewer. If I run the same .intunewin file manually, it works. Is Intune's Sidecar Agent just having a bad day, or is there a better way to track these silent failures?
Hi KELLER LEA,
I’m following up to check whether the issue has been resolved. Feel free to reply if you need further information. If the information provided was helpful, please click "Accept Answer" to help others in the community. Thank you!
Hi,
This pattern is more common than it should be, and in most cases it isn’t the installer itself, it’s how the Intune Management Extension (IME, sometimes referred to as the Sidecar Agent) is orchestrating the install context. When you see “Unknown Error” with no obvious logs, I’d start by pulling the IME logs from C:\ProgramData\Microsoft\IntuneManagementExtension\Logs, particularly IntuneManagementExtension.log and AgentExecutor.log, they usually contain more detail than Event Viewer.
A frequent root cause is context mismatch: Intune runs installs under SYSTEM by default, while your manual test likely runs under a user context, so dependencies (like user profiles, mapped drives, or permissions) can behave differently. I’d also double-check your detection rules, if they’re too strict or misaligned, Intune can report a failure even when the install actually succeeded.
Another angle is timing and environment readiness; on that 10% of devices, you may be hitting transient states (pending reboots, locked files, or security controls like AV/EDR blocking execution silently). Enabling verbose logging in your installer (if supported) and wrapping the install command in a logging script can help surface what Intune itself doesn’t expose.
If you want a more deterministic approach, consider testing the package using PsExec (SYSTEM context) locally to replicate Intune behavior more closely. That often reveals gaps that don’t show up in standard manual runs.
If this helped you move forward, feel free to hit “Accept Answer”
Jason
AI answer
Silent Win32 app failures through Intune are usually due to how detection, context, or dependencies behave under the Intune Management Extension (Sidecar), not because the agent is “having a bad day.” The same .intunewin can succeed interactively but fail under system/user context, different permissions, or missing prerequisites.
A structured way to track and diagnose these failures:
C:\ProgramData\Microsoft\IntuneManagementExtension\Logs and any app‑specific logs) and select OK.%TEMP%.C:\ProgramData\Microsoft\IntuneManagementExtension\LogsIntuneManagementExtension.log – overall agent activity, policy processing, and reporting.AppWorkload.log – app check‑ins, install attempts, applicability, and detection logic.AppActionProcessor.log – detection and applicability checks in detail.
These logs typically show:0x87D1041C indicates the app installed but Intune could not detect it (for example, user uninstalled it later, or a self‑updating MSI changed its product version outside Intune).psexec -accepteula -s -i cmd.setup.exe /silent or msiexec /i "MyApp.msi" /q).0x80073CF3 – dependency/conflict/architecture mismatch.0x80073CF2 – invalid package data.
Even if Intune surfaces these generically, the underlying cause can be:C:\Program Files (x86)\Microsoft Intune Management Extension\ContentC:\Windows\IMECacheC:\Program Files\Microsoft Intune Management Extension\ContentC:\Windows\IMECacheAppWorkload.log and IntuneManagementExtension.log between a working and a failing machine.This approach turns “unknown error” into a concrete root cause by leveraging Intune’s Win32 diagnostics, the Sidecar logs, and SYSTEM‑context testing, rather than relying on temp/Event Viewer alone.
References: