TechLifeWeb

Exploring the digital life

Batch script for resetting OneDrive


Published by 
 on 

@echo off
echo Clearing caches...
For /R "%localappdata%\Microsoft\Office\16.0\OfficeFileCache" %%i IN (*.*) do (
	del "%%i"
)
%localappdata%\Microsoft\OneDrive\onedrive.exe /reset
timeout 3
start %localappdata%\Microsoft\OneDrive\onedrive.exe
echo onedrive has been reset
pause

Windows Batch File Examples <% tp.file.cursor(1) %>