This command shows in an admin CMD how many seconds the boot manager waits for the standard operating system to boot automatically:
bcdedit /enum | find "timeout"
Do I want to press the output value in seconds into an environment variable in batch? But it doesn't work like this:
for /f "tokens=2*" %%a in ('bcdedit /enum | find "timeout"') do set "value=%%a"
echo %value%
pause
exit
Does anyone know how to set up the token command?