I created a batch file with a timer in it, when it's run a user can enter a time and the batch file will loop until the right time arrives (it will then run a script). This works fine on my own and other computers, however some computers seem to ignore the time given and instantly run the selected script. Any idea as to why this would happen?
@echo off
color 0a
title Initiatie
:a
cls
echo.
echo Select the time in a 24 hour format (00:00:00.00)
echo.
set /p s=
:check
if %s% equ %time% goto b
if %s% neq %time% goto check
:b
cls
start D:\Scripts\testkey.vbs