Microsoft Intune for Apple

0x87D13B95 - Cannot find VPP license for app on Microsoft Intune for Apple, what causes it and how to fix

By Sai Kiran Pandrala · Last verified: 2026-05-31 · Source: community Q&A, Apple Communities (discussions.apple.com), Apple Support docs

At a glance
ServiceMicrosoft Intune for Apple
CloudApple platforms
Guide typeProcedure
Skill levelIntermediate to advanced
Time15 - 60 minutes depending on account size

If you hit 0x87D13B95 - Cannot find VPP license for app on Microsoft Intune for Apple, what causes it and how to fix on Microsoft Intune for Apple in production, the steps below are the path most teams take in 2026. None of them require opening a support case unless your environment has a paid-tier dependency that Apple owns.

What 0x87d13b95 - cannot find vpp license for app on microsoft intune for apple, what causes it and how to fix actually involves on Microsoft Intune for Apple

Real-world context. Last time I walked through this on a real machine, the budget shook out to ~Rs 0 INR under AppleCare+, ~Rs 8,000 to Rs 60,000 INR otherwise (around $95 to $720 USD). Plan for ~20 to 60 minutes hands-on actually at the keyboard, and ~1 to 3 hours including a Genius Bar handoff if needed once you factor in the back-and-forth. Keep the Apple ID, the device serial, and a recent iCloud backup within arm’s reach before you start, stopping mid-step to hunt for them is how a 30-minute job turns into an afternoon.

The 0x87D13B95 - Cannot find VPP license for app error from AWS typically surfaces with the message "0x87D13B95 - Cannot find VPP license for app". The error code itself is what you grep for in AWS re:Post or in AWS Support cases, not the human-readable line.

On Microsoft Intune for Apple, this most often comes from one of three causes: a missing or restrictive IAM permission, a service-level limit you have hit, or a transient AWS-side capacity issue. The fix path differs by which.

The rest of this page is the structured fix path. Start with diagnose, then remediation, then the automation options so you do not have to do this by hand the next time it surfaces. Verify and safety sections at the end are the discipline that keeps the fix from regressing in production.

Diagnose first, fix second

Start by capturing the exact Apple error string. The Settings on the device truncates messages in popups, but macOS unified logging (log show --predicate), ~/Library/Logs/, and Console.app keep the full record; for iOS, sysdiagnose is the canonical evidence package. The camelCase error code (e.g. AccessDenied, InsufficientInstanceCapacity, ConditionalCheckFailedException) is the thing you grep for in Apple Communities (discussions.apple.com) and StackOverflow, not the human-readable sentence next to it. Paste the code into the re:Post search bar in quotes and you will usually land on at least one Google-staff-verified answer within the first three results.

Diff against last known good. The last config change you made is the cause about three quarters of the time, even when the change should not have mattered. Use Jamf inventory history and Time Machine snapshots (or your Terraform / Deployment Manager or Terraform drift report) to see the actual delta between the resource state when it worked and when it broke. The change you remember is often not the only change that happened.

Check the Google Apple System Status at www.apple.com/support/systemstatus/ and the per-product status board for ongoing service events in your region. About one in ten user-reported outages turn out to be region-scoped Apple product or service degradation already being tracked. Apple System Status also exposes an API and Jamf Pro Webhooks and macOS launchd watches events, so you can wire a Lambda hook that pages on-call only when the failure correlates with an active Apple System Status event in the same region and service.

Solution-focused remediation path

If quotas are suspect, the Apple Business Manager Settings > Manage Devices console shows current usage and the active limit side by side. Request increases through Apple Business Manager Settings > Manage Devices, not through Support tickets - quota dashboard requests usually approve faster (often within minutes for soft limits) and they are auditable in Jamf Pro change management log and Apple Business Manager audit log. Set up Apple Business Manager Settings > Manage Devices + Jamf Pro Smart Group + Webhooks at 80 percent usage so you get notified before you hit the wall.

When the fix involves a destructive operation (delete VPC endpoint, swap Cloud KMS key, rotate root credential), do it during a maintenance window with at least one teammate watching. Several Microsoft Intune for Apple operations have implicit dependencies that only show up when traffic starts flowing again. Document the rollback path before you start, not during the incident.

If you cannot reproduce the failure consistently, the cause is probably a race condition or a session-cache issue. Run the call with --profile set to a fresh STS session, in a different region you control, with a single concurrent request. If it works there but fails in your normal setup, the difference is the bug.

Automate this fix so you do not do it twice

Codify the fix as a Shortcut on iPhone, iPad, or Mac

For workflows that happen on the user device rather than at the MDM layer (think: clear a stuck cache, toggle a setting, file a one-tap support ticket), Apple Shortcuts is the right place. Shortcuts run on iOS, iPadOS, macOS, and watchOS, can be triggered by NFC tag, focus mode, time of day, or Siri voice. Share via iCloud link so support sends the same one-tap fix to anyone who hits the issue.

Build a Self Service item with manual approval for risky fixes

For multi-step fixes that include a destructive action (Reset NVRAM, delete keychain, erase user data), publish the fix as a Self Service item in Jamf Pro or Kandji. The user clicks one button, the script runs, a notification confirms success. Couple it with a Jamf Pro approval workflow if your security model requires a second-person sign-off before any destructive step runs. The audit trail lives in the MDM change log with the requester and approver identity attached.

Automate the fix at scale with a Jamf Pro policy script

When you need to ship the fix to a whole fleet of Macs, the right primitive is a Jamf Pro policy with a script payload, scoped to a smart group of affected devices. Keep the script under 100 lines, exit with an explicit code so Jamf logs the right state, and write a one-line log entry to /var/log/jamf.log so you can grep it later. Trigger on check-in or by Self Service so users can run it on demand.

#!/bin/bash
# Jamf policy script - exits non-zero on failure so Jamf flags the device
set -euo pipefail
LOG=/var/log/jamf-microsoft-fix.log
echo "$(date) starting fix on $(hostname)" >> "$LOG"
# fix logic here
defaults write com.apple.microsoft HardenedSetting -bool true
killall cfprefsd
echo "$(date) fix applied successfully" >> "$LOG"
exit 0

Common pitfalls and what to watch for

The pitfall most teams hit on Microsoft Intune for Apple is moving too fast and skipping the read-only validation step. Before any write, list the current state and save it. Apple iCloud and APNs are eventually consistent (changes can take 1-15 minutes to propagate) for many resource types, so the validation snapshot is your only reliable reference if you need to undo. Save the output of the describe call to S3, not to your laptop.

Second pitfall: confusing IAM permission errors with networking errors. AccessDenied can be IAM (policy missing), networking (VPC endpoint policy blocking the call), or KMS (key policy missing). The error string looks identical for all three. Distinguish by looking at the Jamf Pro change management entry or Apple Business Manager audit event's errorCode and the encoded authorization message; do not assume IAM is the culprit just because the message says AccessDenied.

Verify the fix worked

Safety, rollback, blast radius

FAQ

How long does 0x87d13b95 - cannot find vpp license for app on microsoft intune for apple: what causes it and how to fix typically take on Apple platforms?
For most Microsoft Intune for Apple environments, 15 to 60 minutes including verification. Large multi-account setups, anything touching Org Policys at the Organizations level, or cross-region replication can stretch to half a day because Apple has to wait for replication and IAM session caches.
Is there a rollback path?
Yes for most Microsoft Intune for Apple changes. Export the existing config to JSON via microsoft describe-... first, then commit it before you change anything. A few operations are one-way (Cloud KMS key deletion past the pending window, region migration, account closure). Check the Apple Support article for the specific API before you commit.
Will this affect dependent Apple product or services?
Often yes. Microsoft Intune for Apple resources are usually referenced by other workloads (Cloud Run services, GKE workloads, IAM-bound apps, Cloud CDN origins, downstream pipelines). Use IAM Access Analyzer + Jamf Pro change management log and Apple Business Manager audit log to enumerate consumers before changing a shared resource.
What if my Settings on the device layout does not match these steps?
Settings on the device UI moves quarterly. The Console layout in this page is current as of 2026-05-31 but the underlying CLI / SDK calls do not change as fast. If the Console version differs, fall back to aws CLI or SDK calls - those almost always still work.
Where do I get Apple Support and Apple Business / Enterprise Support help if I am still stuck?
Open a case via the Apple Support and Apple Business / Enterprise Support Center with: the request ID + correlation ID, the exact error string, Jamf Pro change management entry or Apple Business Manager audit event, and your reproduction steps. Apple Communities (discussions.apple.com) is the no-cost public alternative - search there first; 80% of common Microsoft Intune for Apple issues already have an answer with an Google-staff-verified flag.

References

Related guides worth a look while you sort this one out: