Reply 12240 of 19656, by Mister Xiado
- Rank
- Member
For quick reference:
wrote:[…]
[general]Manufacturer=Company NameModel=Custom[Support Information]Line1=" For technical support and service,"Line2=" buy a new computer."
Your logo image, at least in Win9X, 2K, and XP, should be 180x114, and 8 bit color if you want transparency. Palette index 0 will be your transparent color. If you use Paint Shop Pro to create and edit your logo, you can change palette settings under Colors, Edit Palette (in in PSP X, Image, Palette, Edit Palette). Double-click palette index 0 and change it to a color not used in your image. I usually use bright green (#00FF00) or bright purple (#FF00FF). The filenames I use for my images are:
9X: oemlogo.bmp
2K: oemlogo-2k.bmp
XP: oemlogo-xp.bmp
The batch file below handles renaming the files after they've been copied to the appropriate directory. This just allows you to use different images for different Windows Versions, so you can make era-appropriate logos, if that's your fancy.
And for easy-peasy installation of your custom logo and information:
wrote:[…]
echo offcopy oemlogo.bmp %systemroot%\system32rem ***************************************************rem Script for deploying OEM INFO and OEM LOGO torem different operating systemsrem Simon Butler, Amset IT Solutions Ltd. 12-12-03rem see http://www.amset.info/netadmin/oemlogo.asprem Requirementsrem Image file for Windows 2000 named oemlogo-2k.bmprem Image file for Windows XP named oemlogo-xp.bmprem And oeminfo.ini file.remrem All three files should be placed in the samerem directory as this batch filerem If running from login script, place all three filesrem in your "netlogon" share on the domain controllers.rem Remember - if you are running from a network sharerem it must be a mapped drive!rem ***************************************************rem Get the OS and dump to filever >%systemdrive%\ver.txtRem now find the operating system and act accordinglyfindstr "4.0" %systemdrive%\ver.txtif not errorlevel 1 goto nt4findstr "5.0" %systemdrive%\ver.txtif not errorlevel 1 goto win2kfindstr "5.1" %systemdrive%\ver.txtif not errorlevel 1 goto winxpfindstr "5.2" %systemdrive%\ver.txtif not errorlevel 1 goto win2003goto win9x:nt4set OpSys-NT4echo %OpSys% >>%systemdrive%\result.txtrem Windows NT4 settingscopy oeminfo.ini "%systemroot%\system32"copy oemlogo-2k.bmp "%systemroot%\system32"del "%systemroot%\system32"\oemlogo.bmprename "%systemroot%\system32\oemlogo-2k.bmp" oemlogo.bmp"goto next:win2kset OpSys=Win2Kecho %OpSys% >>%systemdrive%\result.txtrem Windows 2000 settingscopy oeminfo.ini "%systemroot%\system32"copy oemlogo-2k.bmp "%systemroot%\system32"del "%systemroot%\system32"\oemlogo.bmprename "%systemroot%\system32\oemlogo-2k.bmp" oemlogo.bmp"goto next:winxpset OpSys=XPecho %OpSys% >>%systemdrive%\result.txtrem Windows XP settingscopy oeminfo.ini "%systemroot%\system32"copy oemlogo-xp.bmp "%systemroot%\system32"del "%systemroot%\system32"\oemlogo.bmprename "%systemroot%\system32\oemlogo-xp.bmp" oemlogo.bmp"goto next:win2003set OpSys=Win2003echo %OpSys% >>%systemdrive%\result.txtrem Windows 2003 settingscopy oeminfo.ini "%systemroot%\system32"copy oemlogo-xp.bmp "%systemroot%\system32"del "%systemroot%\system32"\oemlogo.bmprename "%systemroot%\system32\oemlogo-xp.bmp" oemlogo.bmp"goto next:win9xset OpSys=9xecho %OpSys% >>%systemdrive%\result.txtrem Windows 9x settingscopy oeminfo.ini "%systemroot%\system32\"copy oemlogo-2k.bmp "%systemroot%\system32\"del "%systemroot%\system"\oemlogo.bmprename "%systemroot%\system\oemlogo-2k.bmp" oemlogo.bmp"goto next:nextecho done >>%systemdrive%\result.txtecho Cleaning up!del %systemdrive%\result.txtdel %systemdrive%\ver.txtrem if problems, put REM in front of above two linesrem to read the results files.
Put all of these on a floppy or flash drive, insert, and run the batch file.











