Forum Discussion

drbenak's avatar
drbenak
Tin Contributor
Jul 31, 2026

How do you remove OneDrive Photos

I was reading how the OneDrive Photos app was stealth installed with no announcement and no opt-out functionality.

Then I discovered that the program had installed itself on my desktop servers running OneDrive for Business and is labeled as a beta product.

Since we are using a non-persistent VDI environment, it is never a good thing when programs install without our knowledge or approval. We have change control and testing procedures we need to follow. It is particularly worrying that Microsoft would push beta software to corporate production environments.

I need to remove this software and block reinstallation until it can be vetted, but I cannot find an independent uninstall function nor can I find instructions a command line tool like DISM. It looks like it is integrated into OneDrive.

A quick response is requested.

Thank you in advance

 

 

5 Replies

  • drbenak's avatar
    drbenak
    Tin Contributor

    I spoke to support, and it is integrated into OneDrive and no tools exist to disable functionality. What I did find was I could roll back the version and then set our GPO so that OneDrive is updated on the deferred ring. OneDrive Photo (Beta) is gone, at least until the deferred ring catches up. Hopefully this product will not be a beta product at that point.

    Deployment ring is setup in Computer > Policies > Templates > OneDrive > "Set the sync app update ring"

  • NikolinoDE's avatar
    NikolinoDE
    Platinum Contributor

    Let me give you the straightforward, friendly truth about this, along with exactly what you can do about it.

    The Short Answer (The Fix)

    You can delete the shortcut (the icon) safely.

    Think of this app like a doorway to a photo gallery. If you don't want to walk through that doorway, you can just remove the door handle (the shortcut) without breaking the rest of the house (your OneDrive files).

    Here is how to remove the icon:

    • If you see it on your Desktop, simply right-click it and select Delete.
    • If you see it in your Start Menu, click the Start button, find the "OneDrive Photos" tile or entry, right-click it, and select Unpin from Start (or More → Open file location, then delete the shortcut from that folder).

    The Longer Answer (Why it works this way)

    Here is the key detail: This isn't a separate app that you can uninstall through your computer's "Apps & Features" settings. Microsoft quietly baked this photo viewer directly into the core OneDrive sync program that keeps your work files backed up.

    Because they are tightly fused together:

    • If you try to "Uninstall" it, you will actually be forced to uninstall your entire OneDrive—which would break your file syncing and make your online files disappear from your PC. We definitely don't want that!

    What happens if I just leave it alone?

    Don't worry—it is not secretly running in the background and it is not uploading your photos unless you actually open it and log in. It is just a dormant shortcut. If you ignore it, it won't do anything.

    A Quick Warning

    Please do not go digging into your computer's Program Files folder to delete the actual program files. If you delete the underlying engine by mistake, it will corrupt your OneDrive installation, and you'll have to reinstall everything.

    The Bottom Line

    Right-click the icon and delete the shortcut. That clears it off your screen, keeps your work files safe, and lets you get back to your day.

    If you are in a managed company environment and this shortcut keeps coming back after a restart, please just let your IT Support team know. They have special tools to hide it for everyone at once—but for your personal machine, deleting the shortcut is the perfect, safe solution.

     

     

    My answers are voluntary and without guarantee!

     

    Hope this will help you.

     

    Was the answer useful? Mark as best response and like it!

    This will help all forum participants.

    • GaryGoGoGo's avatar
      GaryGoGoGo
      Tin Contributor

      I am already sync'ing my "Pictures" with OneDrive. What else would there be? My phone? I don't want OneDrive spending time backing up my phone.

      • NikolinoDE's avatar
        NikolinoDE
        Platinum Contributor

        Great question — and the short answer is:

        No, OneDrive Photos on your PC will not start backing up your phone.

        The OneDrive Photos app does not connect to your phone and does not automatically upload phone pictures. It only shows photos that are already stored in your OneDrive cloud.

        Since you are already syncing your Pictures folder with OneDrive, the photos you see there are simply the pictures that are already in your OneDrive account from your PC.

        Phone photo backup is a separate feature that only works through the OneDrive mobile app. It must be enabled manually using:

        OneDrive app on your phone → Profile picture → Settings → Camera Upload

        If Camera Upload is turned off, your phone photos will not be uploaded.

        So, in your situation:

        • Your PC Pictures folder continues to sync as before.
        • OneDrive Photos only displays existing OneDrive photos.
        • Your phone will not be backed up automatically.
        • No additional phone storage or upload activity will occur unless you enable it yourself.

        If you are using OneDrive in a company environment, this is also why many administrators choose to restrict or block additional photo features: they are mainly designed for personal photo management and are not required for normal business file synchronization.

         

        I hope this helps

  • Jason_M's avatar
    Jason_M
    Tin Contributor

    Before removing anything, confirm whether this is a separate Windows package or a feature delivered inside the OneDrive sync client. A name containing “Photos” does not by itself prove that it is an independently installed OneDrive application, and removing the wrong package could remove the built-in Windows Photos app instead.

    Run the following on one affected VDI image first:

    Get-AppxPackage -AllUsers | Where-Object { $_.Name -match 'OneDrive|Photos' } | Select-Object Name, PackageFullName, InstallLocation

    If the item does not appear as a separate AppX package and has no entry under Settings > Apps > Installed apps, it is probably part of the OneDrive client. In that case, there is no supported way to remove only that feature; removing OneDrive folders or using DISM blindly is likely to damage the sync client.

    For a non-persistent VDI deployment, the immediate control should be the golden image and the OneDrive update policy. Check the OneDrive sync app update ring in Intune or the OneDrive administrative templates, and make sure it is set to the organization’s approved production or enterprise ring, not an Insider or preview ring. Test future OneDrive updates on a separate image before releasing them to the production pool.

    If the command identifies a distinct package, record its exact PackageFullName, publisher, version, and install location before creating a removal or AppLocker/WDAC rule. Test removal and blocking on a disposable VDI image first, then apply the approved change to the golden image. Do not use a broad rule that blocks every Microsoft Photos or OneDrive package, because that can also break OneDrive sign-in or normal Windows Photos functionality.

    The package name, version, deployment time, and OneDrive client version are also the information Microsoft support will need to determine whether this was a OneDrive feature rollout, a Store package, or an unintended preview deployment.