Skip to main content

Modify the Windows XP System Properties logo



In this tip you can learn how you can insert your own logo in the system properties dialog and complete it with your own contact information.
To invoke the system properties dialog, click the Start button, right-click "My Computer" and select "Properties".
This will open up your general system information dialog. On our Steelwedge laptop, the Windows XP System Properties logo looks like this :






















If you want to put your own graphic in there, you should create your image in a .bmp graphic file. It's also a good idea to create this bitmap image with the same background shade of gray (RGB: 192, 192, 192) used in the Properties dialog. Otherwise, you risk letting Windows make its own judgments regarding color contrast and background shading.
The next thing to consider is the image size. The system properties dialog only offers enough real estate for an image of about 180 (wide) x120 (high) pixels. Make sure that you can fit your logo in this area.
Once you have created your logo and saved it as a .bmp file, copy it over to the system32 subfolder of your Windows system folder. If you don't know where your system folder is :
  • Click the Start button and select "Run"
  • In the "open" field, enter "cmd" (without the quotes) and click ok
  • Windows will open up a dos command window
  • In the command window, type "set system" (without the quotes)
  • Look for the line that contains "SystemRoot", this is where your system directory is (generally, the Windows XP system folder is c:\windows)
Now that you know where your system folder is, copy your logo image file over to the system32 subfolder of your system folder. Then rename your logo image file to oemlogo.bmp
Additionally you can create a new file in this same folder and name the new file oeminfo.ini
In this file you can enter your contact information like in the example below :
[General]
Manufacturer=STEELWEDGE
Model=Naveen Kumar Reddy

[Support Information]
Line1=" "
Line2=" For support,upgrades or questions:"

Line3="ithelpdesk@steelwedge.com"

Line4=" http://www.steelwedge.com/"

Save and close the file and you are ready. From now on, if someone opens up the system properties dialog, your own Windows XP System Properties logo is in there.

Comments

Popular posts from this blog

AWS Certification Q&A

The AWS Certified Solutions Architect – Associate Level exam is intended for individuals with experience designing distributed applications and systems on the AWS platform. I am listing many sample certification questions and answers while will help to face the certification successfully Keep in mind that the answers for each question might change due to the advancement of AWS and please try to find the answer in more logical manner Answers are below of the page Sample Questions for Amazon Web Services Associate Solutions Architect Certification What does Amazon S3 stand for? A Simple Storage Solution. B Storage Storage Storage (triple redundancy Storage). C Storage Server Solution. D Simple Storage Service. You must assign each server to at least _____ security group A 3 B 2 C 4 D 1 - Before I delete an EBS volume, what can I do if I want to recreate the volume later? A Create a copy of the EBS volume (not a snapshot) B Store a snapshot of the volume C Downlo...

Powershell script to remote reboot servers

$RebootList = Get-Content RebootServers.txt foreach( $Rsrv in $RebootList ) { Write-host “Issuing remote reboot command to $Rsrv” # Command to force reboot the remote server (gwmi Win32_OperatingSystem -ComputerName $Rsrv).Win32Shutdown (6) } That’s all. You can replace the  (6)  with any of the following: 0 = Log off 1 = Shutdown 2 = Reboot 8 = Power off 4 = Forced log off 5 = Forced shutdown 6 = Forced reboot 12 = Forced power off *******************************************   Note: 1. Create a text file – in this case RebootServers.txt 2. Populate RebootServers.txt with the names of the servers you want to reboot. One server name per line. Make sure there are no blank lines after the last server name. 3. Save the RebootServers.txt file in the same directory as the PS1 script (like the one you created – RemoteShutDown.ps1) 4. Run the script to reboot servers.