Files
windows-scripts/CheckOneDrive.bat
2023-12-05 19:39:38 -06:00

10 lines
235 B
Batchfile
Executable File

tasklist /FI "IMAGENAME eq onedrive.exe" 2>NUL | find /I /N "onedrive.exe">NUL
if "%ERRORLEVEL%"=="1" goto StartOneDrive
goto End
:StartOneDrive
start "" "C:\Program Files (x86)\Microsoft OneDrive\OneDrive.exe" /background
:End
exit