@echo off
SETLOCAL EnableDelayedExpansion
:beginloop
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" list runningvms | FINDSTR Cloud
if %errorlevel% EQU 0 (
echo Is running
) else (
echo VM is not running, tryint to start:
rem C:\Program Files\Oracle\VirtualBox\VBoxManage.exe startvm Cloud --type headless
)
timeout /T 60 /NOBREAK
goto :beginloop