Skip to content

Instantly share code, notes, and snippets.

@mqudsi
Created November 22, 2011 17:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mqudsi/1386251 to your computer and use it in GitHub Desktop.
Save mqudsi/1386251 to your computer and use it in GitHub Desktop.
Sample EasyBCD NeoGrub configuration file used to dual-boot XP/Vista, hiding the Vista drive when booting into XP.
# NeoSmart NeoGrub Bootloader Configuration File
#
# This is the NeoGrub menu.lst file, and should be located at x:\NST\menu.lst
# (where x = your "system" partition i.e. the one containing all of the boot files)
# Please see the EasyBCD Documentation for information on how to create/modify entries
# http://neosmart.net/wiki/display/EBCD
default 0
timeout 10
title Boot XP (hide Vista)
hide (hd0,1) # SET THIS TO THE VISTA DRIVE
# Optional: repeat the above entry for all the Vista drives
chainloader (hd0,0)/ntldr # SET THIS TO THE PARTITION MARKED 'system' IN DISK MANAGEMENT
boot
title Boot Vista (unhide Vista)
unhide (hd0,1) # SET THIS TO THE VISTA DRIVE
# Optional: repeat above entry for all the Vista drives
reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment