10 lines
235 B
Batchfile
Executable File
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
|