Thread: XP Splash Screen

  1. #1
    Registered User Daniel's Avatar
    Join Date
    Jan 2003
    Posts
    47

    XP Splash Screen

    Hello,

    How do I change the splash screen while windows is loading?

    Thanks for your help,
    Daniel
    C++ Homepage: http://darkeldar77.tripod.com/cpp.html

  2. #2
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644

    Re: XP Splash Screen

    Originally posted by Daniel
    Hello,

    How do I change the splash screen while windows is loading?

    Thanks for your help,
    Daniel
    http://www.themexp.org (click on the "How To Install" button up on the top). Look for the "Install a Bootscreen" section of it.

  3. #3
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    theres a faster/better way to do this, through bootXP.

    http://www.bootxp.net/

  4. #4
    Registered User Daniel's Avatar
    Join Date
    Jan 2003
    Posts
    47
    Thanks it worked
    C++ Homepage: http://darkeldar77.tripod.com/cpp.html

  5. #5
    If you do it by using a resource hacker on ntoskrnl.exe just make sure to look over what you do very carefully b/c if oy umake a mistake Windows XP will stop loading as soon as it gets to the boot screen.

  6. #6
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    Originally posted by unanimous
    If you do it by using a resource hacker on ntoskrnl.exe just make sure to look over what you do very carefully b/c if oy umake a mistake Windows XP will stop loading as soon as it gets to the boot screen.
    Then how would you get back, run in safe mode?

  7. #7
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    That or last known good config. This is the reason that bootxp's backup line feature is awsome. If a problem arises, you just pick the Windows XP(Backup Line) option on boot and viola.

  8. #8
    Actually once that happens you can't get into Safe Mode b/c ntsokrnl.exe is still loaded and of course doesn't work. The best thing I could think of is using the recovery console off the XP CD, or if you made a backup of ntsokrnl.exe and you have another OS installed, boot into the good OS and replace the current ntsokrnl.exe with the backup.

  9. #9
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    When mine did that (cuz i toyed with it hehe) i used the "last known good configuration" option to get into windows.

  10. #10
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    Originally posted by RoD
    When mine did that (cuz i toyed with it hehe) i used the "last known good configuration" option to get into windows.
    What version (windows) where u in?

  11. #11
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    XP Pro

  12. #12
    C++ Developer XSquared's Avatar
    Join Date
    Jun 2002
    Location
    Ontario, Canada
    Posts
    2,718
    You can also modify your boot.ini file, using the /KERNEL= command to change the default kernel EXE. This is what mine looks like:
    Code:
    [boot loader]
    timeout=3
    default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
    [operating systems]
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional SpecialBoot" /fastdetect /KERNEL=ntosboot.exe
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect
    EDIT: the default= line is screwed up, and I can't seem to fix it. It should be \WINDOWS.
    Naturally I didn't feel inspired enough to read all the links for you, since I already slaved away for long hours under a blistering sun pressing the search button after typing four whole words! - Quzah

    You. Fetch me my copy of the Wall Street Journal. You two, fight to the death - Stewie

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Problems with splash screen
    By h3ro in forum Windows Programming
    Replies: 13
    Last Post: 08-31-2008, 10:16 AM
  2. Feedback: Functional Specification Wording
    By Ragsdale85 in forum C++ Programming
    Replies: 0
    Last Post: 01-18-2006, 04:56 PM
  3. char copy
    By variable in forum C Programming
    Replies: 8
    Last Post: 02-06-2005, 10:18 PM
  4. Question..
    By pode in forum Windows Programming
    Replies: 12
    Last Post: 12-19-2004, 07:05 PM
  5. i am not able to figure ot the starting point of this
    By youngashish in forum C++ Programming
    Replies: 7
    Last Post: 10-07-2004, 02:41 AM