App Deployment
8 TopicsInstall failures - App cannot be installed due to a supersedence relationship conflict
Getting installation failures that have this message: "App cannot be installed due to a supersedence relationship conflict (0x87D300DB)". I'm trying to make sense of what I need to fix. This is a version of software that replaces an older version of the same software, so I have supersedence set to "No" on the older piece of software, on this newer app. On a manual install, I can run the installer EXE and don't need to uninstall the older version to get this one to install. This version has no dependencies. On the app this supersedes, there are no dependencies or supersedences. Interestingly, some of the installs of the same kind of computer succeed on this app that's superseding an older version. All should have the program that this supersedes on it. For group assignments, I have a Where am I getting this error from, and how can I get rid of it? Thanks!Solved5.2KViews0likes12CommentsConfusion Regarding Filter Precedence
App Deployment/Packaging Here's the scenario I'm facing (VPP app): Group A (Required Assignment): Users: Identical to Group B. Filter: Include only corporate iPhones. Purpose: Auto-install the app on corporate-owned iPhones. Group B (Available Assignment): Users: Identical to Group A. Filter: None. Purpose: Make the app available to all devices (corporate and BYOD) in the Company Portal. Issue: BYOD devices are receiving the required install despite the filter. Filter message: "The app was offered during the last check-in. We couldn't evaluate the device for matching filters because a conflicting assignment didn't require filters." Filter: (device.model -contains "iPhone") and (device.deviceOwnership -eq "Corporate") Evaluation result: Not evaluated due to a conflicting assignment without filters. Business Request: The app should be available to the same list of users. It should be required (auto-installed) only on corporate devices. Overlapping groups are used to simplify automation and avoid complicating the process for the Service Desk, which would need to check if devices are BYOD or corporate-owned. I've been looking at: https://learn.microsoft.com/en-us/mem/intune/fundamentals/filters-reports-troubleshoot#filters-and-assignment-conflict-resolution https://learn.microsoft.com/en-us/mem/intune/fundamentals/filters-reports-troubleshoot#filters-and-assignment-conflict-resolution https://learn.microsoft.com/en-us/mem/intune/apps/apps-deploy#how-conflicts-between-app-intents-are-resolved And am admittedly a little smooth-brained. Can anyone explain what's happening here and how to resolve? Is the "no filter" available group taking precedence over the "include" filter and somehow pushing to all devices? How can I rectify this? Can I just add a dynamic group to exclude all BYOD devices in the required assignment and leave the rest the same or use an exclude filter for BYOD device in the required assignment? Any help is appreciated.933Views1like3CommentsVPP Apps Not Installing via Intune – Error 0x87D127DB Despite Valid Configuration
Hi everyone, We’re currently using Microsoft Intune in combination with Apple Business Manager (ABM) to provision iPhones in our organization. Our setup has worked reliably until recently: in April/May, we successfully deployed 50 iPhones without any issues. However, for the past 10 days, we’ve encountered a persistent issue: VPP apps are no longer installing automatically on newly enrolled devices. ✅ What’s working: Device registration in ABM Syncing devices from ABM to Intune Device renaming, resetting, and syncing via Intune Uninstall Apps using uninstall group of the deployment configuration on existing devices) Disabling devices in ABM and syncing changes to Intune Purchasing new apps in ABM and syncing them to Intune App license counts (total, used, available) are correctly shown in Intune ❌ What’s not working: VPP apps are not being installed. Only one or two icons appear on the home screen with a cloud symbol. Tapping them prompts a message that the app must be downloaded from the App Store. Intune consistently shows the following error: “App installation failed. 0x87D127DB (Unknown)” Occasionally, a message appears stating that VPP licenses could not be found, although all apps have sufficient licenses and Intune reflects this correctly. Troubleshooting steps taken: Devices have been reset multiple times New apps were purchased and assigned with a minimal configuration (one required group) All certificates (MDM push, VPP token, enrollment token, Apple SCIM token) are valid Apple Business Support confirms their services are operational Microsoft Support has not provided a resolution and suspects the issue lies with Apple Apple, in turn, refers us back to Microsoft At this point, we’re stuck between both vendors and are hoping someone in the community has encountered this issue or found a workaround. Has anyone else experienced this behavior or found a solution for the 0x87D127DB error with VPP apps in Intune? Thanks in advance for your help!Solved1.4KViews0likes7CommentsDeploy File to Intune Enrolled Devices as Win-32 App
I had a request to Deploy a pdf file to user's desktop and could not find clear documentation, hence here is how I successfully deployed it and decided to share is with this amazing community. Deploy File to Intune Enrolled Devices Deploy a file to Intune enrolled device's to "C:\Users\Public\Desktop" through Intune Step 1: Prepare the files: The File Install-file.ps1 Remove-file.ps1 Detect-file.ps1 Step 2" Create an Install, Remove & Detect script & save each scripts A. Install: #Installation Script: Install-file.ps1 $FileName = "FileToDesktop.pdf" $ScriptPath = [System.IO.Path]::GetDirectoryName($MyInvocation.MyCommand.Definition) Copy-Item -Path "$ScriptPath\$FileName" -Destination "$Env:Public\Desktop" B. Remove: # Remove Installation: Remove-file.ps1 $FileName = "FileToDesktop.pdf" Remove-Item -Path "$Env:Public\Desktop\$FileName" C. Detect: # save this in a separate folder #Detect File : Detect-file.ps1 $FileName = "FileToDesktop.pdf" if (Test-Path -Path "$Env:Public\Desktop\$FileName"){ Write-Output "0" } Step 3: collect Install-file .ps1, Remove-file .ps1 and the required files in one folder as shown above and create an Intune installation Package. PS C:\Intune\WindowsIntunePrepTool> .\IntuneWinAppUtil.exe Please specify the source folder: C:\DeployFile\FileToDeploy Please specify the setup file: FileToDesktop.pdf Please specify the output folder: C:\DeployFile Do you want to specify catalog folder (Y/N)?N Step 4. Deploy Intune installation file with the following commands Upload the IntunePackage as " App : Windows app (Win32) Install Command: %windir%\system32\windowspowershell\v1.0\powershell.exe -executionpolicy bypass -file "Install-file.ps1" Uninstall Command: %windir%\system32\windowspowershell\v1.0\powershell.exe -executionpolicy bypass -file "Remove-file.ps1" Operating system architecture = select both 32/64-bit Detection rule: use custom detection script and upload the Detect script created above. Following the above steps, it is straight forward and easy to deploy a file to Intune Enrolled devices when required.31KViews2likes13CommentsAndroid Enterprise (fully managed) App installation stuck at pending
Hi everyone I have an Android Device enrolled with the Android (fully managed) profile. There are several Apps that get deployed to this device. However, the installation stuck at "pending" as seen in my screenshot. After I click on the pending App, the Play Store opens. Then I click on cancel and then install. After that the App gets installed. My Managed Google Play Store Apps in Intune are all Required and targeted to "All users". The Apps get automatically installed on my personally-owned work profile Phones without any issues. When I look under Device install status from the deploying App, I see the device with Status "Failed" and Status Details "The application failed to install, possibly because of insufficient storage or an unreliable network connection. The installation will be retried automatically. (0xC7D24FBA)" Does anyone face the same issue or know how to solve it? Thanks for your help ❤️9.1KViews0likes3CommentsWin32 app install not showing up in Start Menu/Apps List
We have a Win32 app that we're deploying as an Available app through Company Portal. The files for the app show up in C:\Program Files (x86) in the app's folder on the endpoint; however, the app doesn't appear in the Start Menu or Programs and Features/Apps. Intune reports this app as "installed," but it's truly not. I haven't seen another app behave like this so far. Installing the program manually, outside of Intune, the app icon shows up in the Start Menu and it's recognized as an installed program in Programs and Features/Apps. How do we get this to be recognized as an installed app on the computer/Start Menu icon?Solved2.5KViews0likes9CommentsAccessibility URL need
Within Intune / Endpoint Manager when registering an app you have the following options... Information URL Privacy URL However we are in need of an accessiblity statement url record against the app/website Some background reading in UK law for public sector + you should be doing it anyway as good practice https://www.local.gov.uk/our-support/accessibility632Views0likes0CommentsWin32 apps for non-primary users
We have more and more requests coming in for multiple users on one shared device. We're currently doing tests with Win32 apps on 1903 devices with multiple users (ESP enabled). So for now it seems that all Win32 apps get stuck on the 2nd user, while on the 1st/primary user everything works fine. Store apps seem not to be affected. We're still investigating but could not find any helpful information so far. Anyone else experience this? Thank you! Tom1.1KViews0likes1Comment