The OneDrive Photos auto-install issue has become one of the most complained-about Windows 11 behaviours of mid-2026 โ Microsoft is pushing a new image-viewer app onto machines without any prompt, consent dialogue, or opt-in. If you have opened your Start Menu recently and spotted an app called OneDrive Photos that you definitely never installed, you are not alone and you are not imagining things.
This guide walks you through exactly what the app is, how to confirm whether it is on your machine, how to remove OneDrive Photos cleanly, and โ most importantly โ how to stop Windows 11 reinstalling it the moment your back is turned.
What Is the OneDrive Photos App and Why Is It Appearing?

OneDrive Photos is a standalone image-viewer component that Microsoft began bundling silently with the OneDrive sync client in July 2026. Unlike the long-standing Microsoft Photos app, it is tightly integrated with OneDrive cloud storage and includes a biometric-scan feature that can catalogue faces stored in your OneDrive account. It arrives not through the Microsoft Store โ where you might at least see a changelog โ but as a silent payload piggybacked on a routine OneDrive client update.
According to reporting by Windows Latest, the app installs without any user prompt during the OneDrive background update cycle, effectively making it Windows 11 bloatware delivered through a trusted system component. That bundling mechanism is exactly what makes it so tricky to remove.
How to Confirm the OneDrive Photos Auto-Install on Your PC
Before removing anything, verify the app is actually present. There are three quick ways to check:
- Settings โ Apps โ Installed Apps: Search for “OneDrive Photos”. If it appears as a separate entry, it has been silently installed.
- Start Menu search: Type OneDrive Photos. An unexpected tile here confirms the auto-install.
- PowerShell check: Open PowerShell as Administrator and run
Get-AppxPackage *OneDrivePhoto*. Any output means the package is present on your system.
If the PowerShell command returns nothing but Settings shows the app, it may have been deployed as a Win32 component via the OneDrive installer rather than as an MSIX package โ important to know because the removal method differs.
Remove OneDrive Photos: Step-by-Step for Home Users

Because OneDrive Photos is not a fully independent app, removing it cleanly means targeting its parent: the OneDrive sync client itself.
- Open Settings โ Apps โ Installed Apps.
- Search for Microsoft OneDrive and click the three-dot menu beside it.
- Select Uninstall and confirm. This removes both OneDrive and its bundled Photos component.
- Reboot your machine.
- After rebooting, check Installed Apps again and confirm OneDrive Photos no longer appears.
If you want to keep OneDrive for file syncing but lose the Photos component, you are currently in a difficult position โ as of late July 2026, Microsoft has not provided a granular toggle. Your only supported option is a full OneDrive removal.
Remove OneDrive Photos via PowerShell (IT Admins)
For IT administrators managing multiple endpoints, a PowerShell approach is far more scalable than clicking through Settings on each machine. The following two-step process handles both the MSIX package and the Win32 installer remnants:
- Open PowerShell as Administrator.
- Stop the OneDrive process:
Stop-Process -Name OneDrive -Force -ErrorAction SilentlyContinue - Remove the MSIX component if present:
Get-AppxPackage *OneDrivePhoto* | Remove-AppxPackage - Uninstall the OneDrive client itself:
Start-Process "$env:SystemRoot\SysWOW64\OneDriveSetup.exe" "/uninstall" -Wait(useSystem32on 32-bit systems) - Delete leftover registry keys under
HKCU:\SOFTWARE\Microsoft\OneDriveif desired.
This approach pairs well with the broader Windows 11 bloatware removal strategies covered in our Windows 11 Bloatware Removal: Safe Methods & PowerShell Guide, which includes ready-to-use scripts for stripping out multiple unwanted apps in one pass.
Block OneDrive Photos From Reinstalling via Group Policy

Removing the app once is satisfying; stopping it from silently returning via the next OneDrive update is what actually matters. Group Policy is the most reliable method for domain-joined environments:
- Open Group Policy Editor (gpedit.msc) and navigate to Computer Configuration โ Administrative Templates โ Windows Components โ OneDrive.
- Enable the policy “Prevent the usage of OneDrive for file storage”. This disables the sync client entirely and prevents it re-launching.
- For more surgical control, use Software Restriction Policies or AppLocker to whitelist specific OneDrive versions and block updates that bundle new components.
- In Intune / Microsoft Endpoint Manager, deploy a Device Configuration profile using a custom OMA-URI to set
./Device/Vendor/MSFT/Policy/Config/OneDrive/PreventNetworkTrafficPreUserSignInto1.
Block OneDrive Photos on Standalone PCs Without Group Policy
Home and Pro edition users without Group Policy access can still block OneDrive Photos from auto-installing by preventing OneDrive from updating silently:
- Disable OneDrive from startup: Task Manager โ Startup Apps โ disable Microsoft OneDrive.
- Block via Windows Update: Use the
wushowhidetool (Microsoft’s “Show or hide updates” utility) to hide the OneDrive update that bundles the Photos component. - Registry block: Set
HKLM\SOFTWARE\Policies\Microsoft\Windows\OneDriveโDisableFileSyncNGSC=1(DWORD). This prevents the sync client from running, which also prevents Photos from deploying. - Remove run key: Delete
HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\OneDriveto stop automatic startup without a full uninstall.
Keep in mind that Windows 11 has a history of restoring OneDrive through feature updates. After every major update โ such as the upcoming 26H2 release โ re-check Installed Apps to confirm the block held.
Why This Matters: Windows 11 Bloatware Creep Is Accelerating
The OneDrive Photos situation is not a one-off. Since 2024, Microsoft has used silent background updates to push Copilot, Bing widgets, Phone Link integrations, and now a biometric photo scanner โ all without explicit user consent. Each of these apps adds telemetry hooks, background processes, and storage overhead to machines where users deliberately chose a minimal configuration.
For businesses, the privacy dimension is significant. OneDrive Photos’ face-recognition capability means employee images stored locally could be scanned and catalogued in a Microsoft cloud service without any IT department signoff. That is a compliance risk under GDPR and similar frameworks that security teams cannot afford to ignore.
If your organisation is also wrestling with questions around which Windows 11 licence best suits a managed environment, see our breakdown of Windows 11 Pro OEM โ the Pro tier gives you access to Group Policy, which is your strongest tool for blocking unwanted app deployments at scale.
What Microsoft Should Do Differently
To be fair, OneDrive Photos is not inherently a bad app โ for consumers who actively use OneDrive and want a cloud-first image viewer with Memories-style curation, it could be genuinely useful. The problem is the delivery mechanism. Silently bundling a biometric-capable app into a background system update, with no opt-in and a deliberately non-obvious removal path, is poor practice regardless of the app’s merits.
A consent screen during the OneDrive update โ or at least a clear notification in the Windows Action Centre โ would cost Microsoft almost nothing and would spare millions of users the frustration of discovering unexpected software on their machines. Until that changes, the steps in this guide are your best defence.
Frequently Asked Questions
Is OneDrive Photos the same as the Microsoft Photos app?
No. The Microsoft Photos app has shipped with Windows for years and handles local image viewing. OneDrive Photos is a separate component introduced in mid-2026 that focuses on cloud-synced images stored in your OneDrive account. Both can exist on the same machine simultaneously, which is part of why users find the duplication confusing.
Can I remove OneDrive Photos without uninstalling OneDrive entirely?
As of July 2026, Microsoft has not provided a supported toggle to remove only the Photos component while keeping the OneDrive sync client. The two are bundled together in the current installer. Your options are a full OneDrive removal, or using a Group Policy or registry block to prevent the component from launching, even if it technically remains installed.
Will blocking OneDrive Photos affect my OneDrive file sync?
If you use the registry or Group Policy approach to disable the OneDrive sync client entirely, yes โ your file sync will stop. If you only remove the OneDrive Photos MSIX package (where available) without touching the core sync service, your Documents, Desktop, and Pictures folder backups should continue unaffected. Always test in a non-production environment first.
How do I know if OneDrive Photos has been scanning my face data?
Open OneDrive on the web, navigate to Photos โ People, and check whether face clusters have been created. If they exist and you did not knowingly enable the feature, the app has been cataloguing images from your OneDrive account. You can delete these clusters directly from the OneDrive web interface under People settings, and then block the app using the methods above.
Does this affect Windows 11 Home as well as Pro?
Yes. The OneDrive Photos auto-install affects both Home and Pro editions because it arrives via the OneDrive sync client, not through a Windows edition-specific feature. The key difference is that Pro users have access to Group Policy Editor, which provides more robust and persistent blocking than registry edits alone.