Jump to content

Add OEM Information In Vista System Properties...


neo

Recommended Posts

We all know about OEM information in system properties under Windows XP

There are OEMLogo.bmp (96x96) for OEMLOGO and OEMInfo.ini for OEM information used to add under windows XP

Copy both files under X:\Windows\System32\

But In Windows Vista, has been changed the method to add OEM information in System properties.

All things are added through Windows registry instead using OEMinfo.ini file.

Here is some code of registry to add OEM info in Windwos Vista

oeminfo.jpg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
@=""
"Manufacturer"="Hewlett-Packard"
"Model"="Compaq Presario SR1610IL"
"Logo"="C:\\Windows\\system32\\oemlogo.bmp"
"SupportPhone"="1-600-114772 (Toll free), 0124-2346992 (Toll Number)"
"SupportURL"="http://www.hp.com/in/support"
"SupportHours"="9 AM to 9 PM (Mon-Sat)"

Here We can see that there is no need to put OEMlogo.bmp file in X:\Windows\System32.

We can locate the file in the any location by setting Logo value

Link to comment
Share on other sites

  • 10 months later...

Thanks this is good info.

But in XP for it to even display surely theres some sort of reg value there?

If you put oemlogo.bmp in system32 in XP it shows in the "My Computer" properties.

If you put oemlogo.bmp in system32 in Vista it shows in the "Computer" properties.

I reckon XP must also have a reg setting for that neo. :P

Link to comment
Share on other sites

  • 2 weeks later...

Right...geek....max size for oem logo is 120x120 and but one...more thing...your logo must be....in 1:1 ratio...in height and width...otherwise....it'll distorted in system properties.

Link to comment
Share on other sites

  • 1 year later...

You should be able to do this via autounattend.xml as well. Add oemlogo.bmp to \Sources\$OEM$\$$\System32\oemlogo.bmp on your DVD.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OEMInformation>
<HelpCustomized>false</HelpCustomized>
<Manufacturer>Hewlett-Packard</Manufacturer>
<Model>Compaq Presario SR1610IL</Model>
<Logo>C:\Windows\Sytem32\oemlogo.bmp</Logo>
<SupportHours>9 AM to 9 PM (Mon-Sat)</SupportHours>
<SupportPhone>1-600-114772 (Toll free), 0124-2346992 (Toll Number)</SupportPhone>
<SupportURL>http://www.hp.com/in/support</SupportURL>
</OEMInformation>
</component>
</settings>
</unattend>

processorArchitecture="amd64" for 64-bit Vista.

Edited by redxii
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...