Jump to content

WinPE BootLoader Timer


pollewops

Recommended Posts

I use WinPE for my Windows 2003 Server installation.

But the default bootloader timer is set to about 5 seconds which I found very short.

Is there a way to increase that PRESS ANY KEY TO BOOT FROM CD OR DVD timer to 20 seconds ?

Any help appreciated...

Link to comment
Share on other sites


I use cdshell for my dvd boot loader needs.

This should work for you. On mine, the chain command is a goto command for a menu. On the line that has the if $bootcount = 10, change 10 to anything you like for a timeout. It prints a "." for each second of the delay before it takes the default action. BOOTSECT.BIN is the boot sector image for the windows installation. This does take a little bit to load though since its loading the entire scripting environment into memory before the script runs.

# Give the boot from CD/DVD prompt...
boot:
set bootcount = 0
cls
print "\n"
print "Press any key to boot from CD/DVD."
boot1:
getkey 1 goto boot2
then chain /boot/bootsect/BOOTSECT.BIN
boot2:
print "."
set bootcount=$bootcount + 1
if $bootcount == 10; then boot 0x80
goto boot1

Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...