OneDrive's broken, sync has stopped, or the installer is throwing a fit. You don't need to reinstall Windows. You just need to know the right order of steps, because doing this wrong is exactly how you end up with a half-dead install that Windows refuses to touch. This guide covers how to reinstall OneDrive on Windows properly, from the five-minute fix right through to the command-line approach that handles the stubborn cases.
TL;DR
To reinstall OneDrive on Windows: uninstall it via Settings then Apps, restart your PC, download the official installer from Microsoft, and sign back in. If that fails, use Command Prompt to force-uninstall it, then run system repair commands before trying again. Managed work PCs may need a Group Policy check first.
Key Takeaways
- Reinstall OneDrive on Windows by uninstalling cleanly, restarting, then running the official Microsoft installer.
- The 'newer version already installed' error means OneDrive wasn't fully removed. A restart usually clears it.
- If Settings won't uninstall it, use
%SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstallin an admin Command Prompt. - Persistent installer failures often point to Windows system file corruption. Run
sfc /scannowand DISM to fix it. - On work PCs, Group Policy may be forcing OneDrive back. That's an IT admin job, not a local fix.
At a Glance
- Difficulty: Easy to Medium
- Time Required: 5 to 30 mins
- Success Rate: 85% of users sorted with the first two methods
What Causes Reinstall OneDrive Windows Problems?
Most of the time when someone needs to reinstall OneDrive on Windows, it's not because OneDrive itself is fundamentally broken. It's because the uninstall didn't finish cleanly, and now Windows is confused about what's actually installed. That's where the fun starts.
The most common culprit is a corrupted or partial install. OneDrive might have crashed mid-update, or an Office update touched shared components and left things in a weird state. The result is an app that's half-installed, won't sync, and throws errors when you try to remove it. Sometimes it looks fine in Settings but doesn't actually work. Sometimes it's not in Settings at all, but the installer still refuses to run because it thinks a newer version is present.
Leftover files and registry references are the second big cause. Even after a successful-looking uninstall, bits of OneDrive can remain scattered across %LocalAppData%\Microsoft\OneDrive and in the Windows registry. The installer reads those references and decides it can't proceed. This is exactly why a restart between uninstall and reinstall isn't optional. It's not just good practice. It actually clears in-memory references that would otherwise block the new install.
Microsoft 365 and Office integration adds another layer of complexity. OneDrive shares components with Office, particularly around authentication and file handling. If you've recently done an Office update or repair, and OneDrive broke shortly after, that's almost certainly the connection. Running an Office Online Repair often fixes OneDrive problems that have nothing to do with OneDrive directly.
Then there's Windows system file corruption. This one's less common but worth knowing about. If sfc /scannow finds problems, those corrupted system files can silently block app installation across the board. OneDrive just happens to be the thing you notice first. And finally, on managed work or school machines, Group Policy can prevent OneDrive from being removed or can force it to reinstall automatically. That's not a bug you can fix locally. That's a policy decision by your IT team.
If you're also dealing with files not syncing properly after a reinstall, our guide on OneDrive sync issues on Windows covers that in detail once the app itself is back up and running.
Reinstall OneDrive Windows: Quick Fix
Start here. This works for the majority of cases where OneDrive is installed but misbehaving, or where you just want a clean reinstall without any drama. Takes five to ten minutes.
Standard Uninstall and Reinstall Easy
- Open Settings and find OneDrive
PressWindows + Ito open Settings. Go to Apps, then Installed apps (on Windows 11) or Apps and features (on Windows 10). Search for Microsoft OneDrive in the list. - Uninstall it
Click the three-dot menu next to Microsoft OneDrive and choose Uninstall. Confirm when prompted. Wait for it to finish fully before doing anything else. - Restart your PC
Don't skip this. A restart clears any OneDrive processes still running in memory and removes session-level references that would block the new install. This one often needs a second reboot before it sticks if you're seeing the 'newer version' error. - Download the official installer
Go to Microsoft's official OneDrive reinstall page and download the current installer. Don't use a cached installer from your Downloads folder. Get a fresh one. - Run the installer and sign in
Double-click the installer and let it run. Sign in with your Microsoft account when prompted. Check that the OneDrive icon appears in the system tray and that sync starts.
More Reinstall OneDrive Windows Solutions
The quick fix doesn't work for everyone. If OneDrive is still misbehaving after a clean uninstall and reinstall, or if Office and Windows integration is part of the picture, this is where to go next. Budget 15 to 30 minutes.
Control Panel Uninstall and Office Repair Medium
- Check Control Panel
Open Control Panel (search for it in the Start menu). Go to Programs then Programs and Features. Look for Microsoft OneDrive in the list. Sometimes it appears here but not in the Settings app, particularly on older Windows 10 builds. - Uninstall from Control Panel if listed
Right-click Microsoft OneDrive and choose Uninstall. Follow the prompts. Restart the PC afterwards. - Repair Microsoft 365 or Office if installed
If you have Microsoft 365 or any Office version installed, go back to Control Panel then Programs and Features, right-click your Office installation, and choose Change. Select Online Repair and let it run. This fixes shared components that OneDrive depends on. It takes a while but it's worth it if OneDrive broke around the same time as an Office update. - Reinstall OneDrive and verify sync
Download the fresh installer from Microsoft, run it, sign in, and check that sync works normally. Open OneDrive settings from the tray icon and confirm your account is connected and the sync folder is correct. - Check for policy restrictions on work devices
If you're on a work or school PC and OneDrive still won't behave after reinstall, it may be managed by Group Policy. Check with your IT department before going further. Trying to override a managed policy locally rarely ends well.
It's also worth checking whether your broader Windows setup is healthy before blaming OneDrive specifically. Our Windows troubleshooting guide covers a range of common Windows issues that can affect app installs and system behaviour in general.
Advanced Reinstall OneDrive Windows Fixes
Right. If you're still here, the normal uninstall route isn't working. Either OneDrive won't uninstall at all, the installer keeps failing, or it keeps coming back after removal. These steps are more involved but they handle the cases that the standard approach misses.
Force Uninstall via Command Prompt Advanced
- Open Command Prompt as administrator
PressWindows + S, type cmd, right-click Command Prompt, and choose Run as administrator. You need admin rights for this to work. - Force-close OneDrive
Run this command:taskkill /f /im OneDrive.exe. This kills any OneDrive process that's running in the background and would otherwise block the uninstall. You might get a message saying the process wasn't found. That's fine, just means it wasn't running. - Run the system uninstaller
Run this command:%SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall. This calls the uninstaller directly from the Windows system folder, bypassing the Settings app entirely. On 32-bit Windows, use%SystemRoot%\System32\OneDriveSetup.exe /uninstallinstead. - Reboot and reinstall
Restart the PC. Then download a fresh copy of the OneDrive installer from Microsoft's official page and run it. Sign in and check sync starts properly.
Repair Windows System Files Advanced
- Run SFC scan
Open Command Prompt as administrator. Run:sfc /scannow. This scans Windows system files for corruption and repairs what it can automatically. It takes 10 to 20 minutes. Don't close the window. When it finishes, it'll tell you whether it found and fixed anything. - Run DISM repair
Still in the same admin Command Prompt, run:DISM /Online /Cleanup-Image /RestoreHealth. This goes further than SFC, pulling clean files from Windows Update to repair the system image. It needs an internet connection and can take 20 to 30 minutes. According to Microsoft's own documentation, running DISM before SFC gives better results in some cases, so if the first SFC run didn't fix things, try DISM first and then run SFC again. - Reboot and reinstall OneDrive
Restart the PC after both commands complete. Download a fresh OneDrive installer from Microsoft and run it. If system file corruption was the cause, the installer should now complete without errors.
Group Policy Check for Managed Devices Advanced
- Check if your device is managed
Open Settings, go to Accounts then Access work or school. If there's a work or school account connected, your device may be under endpoint management. That means OneDrive behaviour can be controlled remotely. - Open Group Policy Editor
PressWindows + R, typegpedit.msc, and press Enter. Note: Group Policy Editor isn't available on Windows Home editions. Navigate to Computer Configuration then Administrative Templates then Windows Components then OneDrive. Look for a policy called 'Prevent the usage of OneDrive for file storage'. If it's set to Enabled, that's your answer. - Contact IT if policy-controlled
If a policy is enforcing or blocking OneDrive, the fix has to come from your IT administrator. Changing policy settings on a managed device locally will likely be overwritten at the next Group Policy refresh (which happens automatically every 90 minutes or so on domain-joined machines). This isn't something to work around locally.
If the SFC and DISM commands above turn up serious Windows corruption, that's sometimes a sign of deeper issues. In rare cases, severe system file corruption can also cause things like a Windows 11 blue screen, so it's worth running those repair commands even if OneDrive is the only obvious symptom right now.
And if you want to keep your Windows install healthy long-term to avoid these kinds of problems recurring, our guide to Windows system maintenance covers the regular checks worth doing.
OneDrive reinstall issues are something we sort remotely every day at Vivid Repairs. Whether it's a stubborn uninstall, a failing installer, or a managed-device policy question, we can connect to your PC and walk through it with you in real time.
Get remote helpPreventing Reinstall OneDrive Windows Problems
Most OneDrive reinstall headaches are avoidable. Here's what actually matters, in order of importance.
Keep Windows Update current. A lot of OneDrive installer bugs and sync failures are patched through Windows Update, and skipping updates is the fastest way to end up fighting a problem that Microsoft already fixed six months ago. Same goes for Office: if you use Microsoft 365, keep it updated and run an Online Repair if OneDrive starts misbehaving after an Office update. The two are more tightly linked than most people realise.
Always use the official Microsoft installer when you need to reinstall OneDrive on Windows. Not a cached copy from three months ago, not a download from a random tech site. The Microsoft OneDrive deployment documentation makes clear that the installer is updated regularly, and running an old version against a current Windows install can cause exactly the kind of version-mismatch errors we've been fixing above.
Don't manually delete OneDrive's program folders. It feels like a clean fix but it's not. The proper uninstall path handles registry entries and system references that a folder delete misses entirely. If you've already done this and now the installer won't run, the force-uninstall command in Solution 3 above is your best recovery route.
On work or school machines, check whether Group Policy controls OneDrive before spending an hour troubleshooting locally. Five minutes with Group Policy Editor (or a quick call to IT) can save a lot of wasted effort. And periodically check that OneDrive is actually signed in and syncing. A quick glance at the tray icon every so often catches install corruption early, before files stop backing up without you noticing.
Reinstall OneDrive Windows: Summary
To reinstall OneDrive on Windows cleanly: uninstall via Settings, restart, download a fresh installer from Microsoft, and sign in. That fixes most cases. If the standard uninstall fails, use the Command Prompt force-uninstall method. If the installer itself keeps failing, run sfc /scannow and DISM to repair Windows system files first. And if you're on a managed work device and OneDrive keeps coming back, that's a Group Policy decision, not a local fault. The right fix for that one is a conversation with IT, not more reinstall attempts. Get the order right and reinstalling OneDrive on Windows really isn't that bad.


