February 15, 200719 yr We all know about OEM information in system properties under Windows XPThere are OEMLogo.bmp (96x96) for OEMLOGO and OEMInfo.ini for OEM information used to add under windows XPCopy 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 VistaWindows 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
December 30, 200718 yr 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.
January 12, 200818 yr 120*120 was the size i used when i made mine and i remember the instructions i read said that was the max.
January 14, 200818 yr Author 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.
April 26, 200917 yr dud how can i edit in windows edition example i will add my email there how can i add in windows edition?
April 26, 200917 yr 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 October 31, 200916 yr by redxii
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now