Error 0x80073CF9 corresponds to ERROR_INSTALL_FAILED, which indicates that the package install failed and the detailed cause is only available in the deployment logs.
To proceed on Windows 10 IoT Enterprise LTSC:
- Run the suggested logging command in the same elevated PowerShell session:
This will show the specific reason for the failure (for example, dependency, disk, policy, or signature issues).Get-AppPackageLog -ActivityID b025d7df-b698-0000-8feb-2bb098b6dc01 - Also check the AppXDeployment-Server event log, which is explicitly referenced for this error code:
- Open Event Viewer.
- Navigate to Applications and Services Logs → Microsoft → Windows → AppXDeployment-Server → Microsoft-Windows-AppXDeploymentServer/Operational.
- Filter or search for the same ActivityId
b025d7df-b698-0000-8feb-2bb098b6dc01. - Review the detailed error text and any inner error codes.
- Based on the details found there, take the corresponding action. For example, for common causes listed in the documentation:
- If the log shows ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED (0x80073CF3), install any missing dependency packages or correct architecture mismatches.
- If it shows ERROR_INSTALL_OUT_OF_DISK_SPACE (0x80073CF4), free disk space and retry.
- If it shows ERROR_INSTALL_POLICY_FAILURE (0x80073CFF), ensure the device is configured for sideloading or has the required developer/enterprise policy.
- If it shows ERROR_PACKAGE_ALREADY_EXISTS (0x80073CFB), either increment the package version and reinstall, or remove the existing package for all users before re-adding it.
Without the additional detail from Get-AppPackageLog or the AppXDeployment-Server log, 0x80073CF9 only indicates a generic install failure, so the next step is to use those logs to identify the specific underlying error and then apply the matching resolution.
References: