Disable Microsoft Onedrive

  1. Disable Microsoft Onedrive User
  2. Should I Disable Microsoft Onedrive Startup
  3. Disable Microsoft Onedrive For Business Browser Helper

Script to completely remove OneDrive from Windows 10

OneDrive comes installed with Windows 10 and is enabled by default if you sign on with a Microsoft account. If you don’t use OneDrive, however, and don’t want it running in the background.

  1. Windows 10 If you don't want to use OneDrive, the easiest solution is to unlink it. Follow the steps in Turn off, disable, or uninstall OneDrive, for how to unlink, hide, and uninstall OneDrive from your PC.
  2. How To Disable or Uninstall OneDrive In Windows 10OneDrive is a free Microsoft storage service which allows Microsoft account holders to store files in the c.

How to Uninstall OneDrive in Windows 10 OneDrive is free online storage that comes with your Microsoft account. Save your files online to OneDrive and you will be able to view, browse, upload, and share them from any PC, tablet, or phone. Microsoft Q&A is the best place to get answers to all your technical questions on Microsoft products and services.

Here is a script to completely remove One Drive from Windows 10. I had an issue removing OneDrive from my Windows 10 computer. Even after uninstalling OneDrive there was still an Icon on my desktop. Why Microsoft made it so hard to remove OneDrive is beyond me. Running the below script removed any traces of OneDrive from my Windows 10 PC.

Disable Microsoft Onedrive User

First copy the script to notepad:

Startup@echo off
cls

set x86=”%SYSTEMROOT%System32OneDriveSetup.exe”
set x64=”%SYSTEMROOT%SysWOW64OneDriveSetup.exe”

Disable Microsoft Onedrive

taskkill /f /im OneDrive.exe > NUL 2>&1
ping 127.0.0.1 -n 5 > NUL 2>&1

if exist %x64% (
%x64% /uninstall
) else (
%x86% /uninstall
)
ping 127.0.0.1 -n 5 > NUL 2>&1

rd “%USERPROFILE%OneDrive” /Q /S > NUL 2>&1
rd “C:OneDriveTemp” /Q /S > NUL 2>&1
rd “%LOCALAPPDATA%MicrosoftOneDrive” /Q /S > NUL 2>&1
rd “%PROGRAMDATA%Microsoft OneDrive” /Q /S > NUL 2>&1

REG DELETE “HKEY_CLASSES_ROOTCLSID{018D5C66-4533-4307-9B53-224DE2ED1FE6}” /f > NUL 2>&1
REG DELETE “HKEY_CLASSES_ROOTWow6432NodeCLSID{018D5C66-4533-4307-9B53-224DE2ED1FE6}” /f > NUL 2>&1

Should I Disable Microsoft Onedrive Startup

Then go to File > Save As…

Save the file somewhere and change the filename to OneDrive.bat
Change the Save as Type: to All Files (*.*)
Click Save

Then go to where you saved your file and double click on your new OneDrive.bat (This will remove OneDrive from your computer)

Disable Microsoft Onedrive For Business Browser Helper

You can now delete the OneDrive.bat file from your computer as it should no longer be needed that OneDrive is gone.