If you have deployed Windows 11 and enabled Windows Backup for Organization, you may have noticed that the restore step during autopilot shows an error. The cause is almost always a Conditional Access policy applying to All cloud apps. The service principal used by Windows Backup does not satisfy the policy conditions during the background authentication flow, so access is denied.
In our tenant, we ran into an additional problem: the app to exclude was not visible in the Conditional Access portal at all. We had to register it manually using PowerShell before the exclusion could be applied. This post covers both issues with Windows Backup for Organization error 53000 and 53003.
When doing an Autopilot user provisioning, the user will be shown one of these 2 error messages:


Both messages indicate a different root cause, but both are related to conditional access policies. If you click on more details, you’ll find an error code that 53000 for “Can’t get there from here”, and 53003 for “You cannot access this right now”. When clicking “More details”, you’ll also notice an App ID listed; don’t get fooled, this is not the App ID that is getting blocked by Conditional access. To find the exact App ID to exclude, we need to look at conditional access logs.
In my case and most cases, the App ID to exclude is d4ebce55-015a-49b5-a083-c84d1797ae8c, but just in case, you might want to go through conditional access logs and confirm this is the case for you as well.





In some tenants, the Microsoft Activity Feed Service service principal exists in Entra ID but does not appear in the Conditional Access app picker. This is because the service principal is missing a tag that tells the portal to surface it as a selectable integrated app.
You can confirm the service principal is present by doing the following:
Microsoft Activity Feed ServiceInstall-Module AzureAD
Connect-AzureAD
New-AzureADServicePrincipal -AppId d32c68ad-72d2-4acb-a0c7-46bb2cf93873You need to add the WindowsAzureActiveDirectoryIntegratedApp tag to the service principal. This is a one-time operation that makes the app visible in the Entra portal, including the Conditional Access app picker.
Prerequisites
Install-Module AzureADRun the following commands in an elevated PowerShell session:
# Step 1 – Connect to your tenant
Connect-AzureAD
# Step 2 – Find the service principal by App ID
$sp = Get-AzureADServicePrincipal -Filter "AppId eq 'd32c68ad-72d2-4acb-a0c7-46bb2cf93873'"
# Step 3 – Verify you found the right object
$sp | Select-Object DisplayName, AppId, ObjectId
# Step 4 – Apply the tag to make it visible in the portal
Set-AzureADServicePrincipal -ObjectId $sp.ObjectId -Tags @("WindowsAzureActiveDirectoryIntegratedApp")Wait 1–2 minutes after running the commands for the change to propagate. Then go back to your Conditional Access policy and search for Microsoft Activity Feed Service in the app exclusion picker — it should now appear.
Once the exclusion is saved, test it on a device that was previously failing.
Note: If a user already saw a sign-in error before the fix was applied, the cached failure state does not auto-resolve. You may need to wipe the device again to bypass the conditional access error.
Once the computer evaluates the rule again, you should now be greeted with the Windows Backup restore screem

Excluding an app from Conditional Access is always a trade-off. Keep the following in mind:
d32c68ad-72d2-4acb-a0c7-46bb2cf93873 to confirm authentication is working as expected.We hope this helped you get Windows Backup for Organization working in your tenant. Let us know in the comments if you ran into a different configuration issue or if you are using a hybrid Azure AD joined environment.
Please fill out the form, and one of our representatives will contact you in Less Than 24 Hours. We are open from Monday to Friday.
Thank you for subscribing to our newsletter or requesting a quote. You will receive our next month's newsletter. If you have requested a quote, we will get in touch with you as soon as possible.
Something went wrong!
Thank for your reply!