Network credentials

I think I’m getting closer.
I believe the issue may actually lie in the following code of the batch file.

timeout /t 10 /nobreak > NUL
:loop
for /f “delims=” %%o in (‘C:\Progra~1\MCEBuddy2x\MCEBuddy.UserCLI.exe --command=jobstatus --action=%1’) do set status=%%o
if %status% == “not present” (
Exit
) else (
timeout /t 2 /nobreak > NUL
goto loop

I increased the timeout to 30 (from 10) and the job actually started. But it looks like after about 30 seconds Plex went ahead and moved the file… the converted file showed up where it was supposed to tho when it was done. The only reason I could see it doing that the loop is not working.