新しいバッチスクリプト。私はWindows XPを使用しているので、choice.exeを使わずに時間を計られたプロンプトを書く方法があるのだろうかと思っていました。バッチウィンドウxp timed prompt without choice.exe
@echo off
/set p answer=input y or n in 30 seconds
rem start timer
if answer==y(
goto :action1
)
if answer==n(
goto action2
)
rem if timer has expired without input go to :action1
:action 1
echo you have entered y
:action 2
echo you have entered n
ヒントありがとうございます。