Location:
State:
Carrier
Country
Status

Disable/Remove SkyDrive


So I found this script:

@echo off
cls

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

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

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

echo Removing OneDrive leftovers.
echo.
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

echo Removeing OneDrive from the Explorer Side Panel.
echo.
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

pause
But that does not remove it from the shell. How can I remove it completely?

Disabling it through gpedit.msc worked for me.

Go to:

Code:
Local Computer PolicyComputer ConfigurationAdministrative TemplatesWindows Components
It should be there, set: "Prevent the usage of OneDrive for file storage" to Enable.

Exit and run "gpupdate /force"

Does "gpupdate /force" even need to be ran? It vanished instantly.

Also, do you have a .reg that can do that for me?

Does "gpupdate /force" even need to be ran? It vanished instantly.

Also, do you have a .reg that can do that for me?
Unfortunately no mate.

I do most of my work through gpedit.msc, I rarely work with .regs or .bats anymore.

Does that remove it in addition to stopping the service/program from running too?

Bump!

Does that remove it in addition to stopping the service/program from running too?
Yup!.

At least on my end it does.

Disable/Remove SkyDrive