@echo off

REM wait about 2 minutes so that the driver installation dialog appears [start]
	echo Waiting about 2 minutes for the driver installation dialog to appear ...

	FOR /L %%I IN (0, 1, 122) DO (
		echo ... %%I/122 seconds have passed
		ping -n 2 localhost >nul
	)
REM wait about 2 minutes so that the driver installation dialog appears [end]

:enter_beginning

REM press [enter] to continue ... [start]
	echo pressing [enter] to continue ...
	"F:\nircmd\nircmd.exe" sendkey enter down
	"F:\nircmd\nircmd.exe" sendkey enter up
	echo ... done

	REM delay for a moment
	ping -n 8 localhost >nul
REM press [enter] to continue ... [end]

GOTO :enter_beginning