@echo off
echo "%computername%"
set "SYNC_TARGET_1=C:\FolderPath1"
set "SYNC_TARGET_2=E:\FolderPath2"
If "%computername%"=="DESKTOP-USERCODE" goto :sync
color 04
echo Not %computername%'s PC!
goto :done
:sync
color 02
:to
echo Syncing to Google Drive...
robocopy "%SYNC_TARGET_1%" "%SYNC_TARGET_2%" * /E /XO
:from
echo Syncing from Google Drive...
robocopy "%SYNC_TARGET_2%" "%SYNC_TARGET_1%" * /E /XO
echo Sync Complete.
:done
pause