Page 1 of 3 123 LastLast
Results 1 to 10 of 29

Thread: Customise Windows 2000/XP/2003 title Bars

  1. #1
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Customise Windows 2000/XP/2003

    My Computer Icon Mod <Link

    As you all know in windows 2000, XP* and 2003* (*If classic style logon enabled) all look very bland, and common.

    If you want your windows to standout then this is for you. Below i will explain how to change you start menu, Hard drive icons and you system title bars, Enjoy:

    WARNING
    Modifying your system files can cause problems if not peformed correctly. Failure to follow all procoutions beforehand will result in you screaming and pulling your hair out!

    Always BACKUp your entire system or atleast the files your changing.

    I can not and don't accept any damage to your system as a result of this tutorial. You peform this at your own risk.
    Enjoy

    System Title Bars
    If you recal when you change your system to use classic logon and turn off fast user switching you see what resembles windows 2000:


    the image we will be changing is the one below:


    First things first, you will need a resource extractor of some form, i personally use Resource Hacker, the screenshots to follow will be using resource hacker.

    doing this is very simple: Copy the file:
    Code:
    c:\Windows\System32\MSGINA.dll
    Copy to your work directory, i will be using
    Code:
    c:\mod
    now open MSGINA.dll with resource hacker, open the BMP tree, then open both sub trees labeled
    Code:
    101
    107


    notice the two items we see, labeled 1033, these are the BMP images we will be editing, there are only a few rules with the images, You CAN'T change the size, and they have to be single layer BMP images.

    Item 101 is the small image, it is identical to 107 except 107 is taller by about 1/5.

    Click "1033" in the "101" tree. and extract the BMP


    Next create your image to suit your needs, Just makesure its the same size as the orginal. Once done select replace BMP


    select the image you wish to replace it with, It is recommended to use 24bit BMP images.



    do the same for tree "107"

    Once done save the file using "SAVE AS" it is important you use save as, this will leave the orgional intact incase you need to restore your file if it fails for some other unknown reason.

    save your file as MSGINA_NEW.dll

    it is quite aquard to apply this patch as your system is in constant use. So, i have found a very easy method. write a batch file (*.BAT)
    Code:
    @echo off
    cls
    echo this will apply the MSGINA MOD
    Pause
    copy c:\windows\system32\msgina.dll C:\windows\system32\msgina_backup.dll
    copy MSGINA_NEW.dll C:\windows\system32\dllcache\msgina.dll /y
    pause
    copy MSGINA_NEW.dll c:\windows\system32\msgina.dll /y
    pause
    copy MSGINA_NEW.dll C:\windows\system32\dllcache\msgina.dll /y
    pause
    copy MSGINA_NEW.dll c:\windows\system32\msgina.dll /y
    exit
    save this as "apply_MSGINA.bat" (Minus " marks)
    Yes, you do need to run the code twice, for some stange reason if you run it once it dosen't copy to the DLLCACHE folder and won't apply.

    you will now need you install disc, insert your bootable CD of you os (2k, XP 2003)

    Load setup, when asked press "R" to repair, this will take you into your recovery console, type:
    Code:
    CD \
    CD MOD
    apply_MSGINA.bat
    this will copy your new files, restart and admire your hard work.

    Start Menu

    Always wanted to change the word "Start" to suit you, maybe your computer name, your screen name maybe. Well heres how:

    First off, as above always make a backup. I will again be using Resource Hacker.

    i will be using the work directory
    Code:
    c:\mod2
    copy your explorer
    Code:
    c:\windows\Explorer.exe
    There is where most of your system is located, and where most of the fun happens

    open explorer.exe in resource hacker, and locate "String Table-->37-->1033"
    if you notice it has the words START

    Just change this to what ever you want, note there not a length limit on the start menu, you could have A-z if you like (Why you would is beyond me)

    Once you have changed it, Click "Compile Script"

    Now save your explorer.exe as Explorer_NEW.exe
    once again we will be using a Batch file to apply the patch, although this time its alot easier.

    BAT:
    Code:
    @echo off
    cls
    echo This will apply the Start menu MOD
    echo
    echo You do need to click cancel to windows file protection,
    echo then Yes to The second File Protection popup.
    Pause
    copy c:\windows\Explorer.exe C:\windows\explorer_Backup.exe /y
    copy Explorer_NEW.exe C:\windows\system32\dllcache\explorer.exe /y
    copy Explorer_NEW.exe c:\windows\explorer.exe /y
    copy Explorer_NEW.exe C:\windows\system32\dllcache\explorer.exe /y
    copy Explorer_NEW.exe c:\windows\explorer.exe /y
    c:\windows\explorer.exe
    exit
    save this as "Apply_START.bat" (Minus " marks)
    now load task manager, and kill Explorer.exe,
    start a new task->CMD
    type:
    Code:
    cd \
    cd mod2
    apply_START.bat
    Last edited by XcOM; 06-20-2007 at 04:23 PM. Reason: Added Info


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  2. #2
    Austral Alien
    Join Date
    Jan 2007
    Location
    Newcastle, NSW, Australia
    Posts
    2,194

    Default Re: Customise Windows 2000/XP/2003 title Bars

    I think I might give this a go on my spare system before I launch into my main computer to do it. If it crashes and burns, no real loss.

    +rep
    Quote Originally Posted by Crimson Sky View Post
    hahaha..."Wacky"
    -Wackello Capello

  3. #3
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: Customise Windows 2000/XP/2003 title Bars

    as your only replacing one system file, keep the backup, then if it does BURN, just get a bucket of water to it, and replace the MOD file with the orgional. VONDABAR


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  4. #4
    Austral Alien
    Join Date
    Jan 2007
    Location
    Newcastle, NSW, Australia
    Posts
    2,194

    Default Re: Customise Windows 2000/XP/2003 title Bars

    It's still nice to practice.
    Quote Originally Posted by Crimson Sky View Post
    hahaha..."Wacky"
    -Wackello Capello

  5. #5
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: Customise Windows 2000/XP/2003 title Bars

    i had to reinstall my VPC about 6 times to get all my mods to work stable, i don't lik eusing skinners or crap like that, it always makes your system either insecure or slows it down,

    Why pass CPU cycles to a skin when you can get windows to do it,


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  6. #6
    Would You kindly... luciusad2004's Avatar
    Join Date
    Oct 2006
    Location
    Pennsylvannia, USA
    Posts
    1,293

    Default Re: Customise Windows 2000/XP/2003 title Bars

    Great tutorial. I also don't like skinners that much. I love to see things like this as an alternative. +rep.
    What if I'm a Snowstorm burning
    What if I'm a world unturning.

  7. #7
    Spam Sniper SgtM's Avatar
    Join Date
    Jul 2005
    Location
    Ohio
    Posts
    4,545

    Default Re: Customise Windows 2000/XP/2003 title Bars

    nice tut.. +rep

  8. #8
    ATX Mental Case
    Join Date
    Jan 2007
    Location
    Boca Raton, FL, USA
    Posts
    165

    Default Re: Customise Windows 2000/XP/2003 title Bars

    Good to see this, I hate the way the windows setup looks! +Rep

  9. #9
    Ceann na Drochaide Bige! XcOM's Avatar
    Join Date
    Mar 2006
    Location
    Sheffield (UK)
    Posts
    2,990

    Default Re: Customise Windows 2000/XP/2003 title Bars

    watch this space!
    New tut in progress.


    Mary had a little lamb. It bumped into a pylon. Ten thousand volts went up its arse and turned its wool to nylon!

  10. #10
    Modders block rendermandan's Avatar
    Join Date
    Mar 2007
    Location
    Nowhere near the beach :(
    Posts
    1,510

    Default Re: Customise Windows 2000/XP/2003 title Bars

    Very intersting. Can you use this to change the colors?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •