neo Posted February 15, 2007 Posted February 15, 2007 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
LeveL Posted December 30, 2007 Posted December 30, 2007 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.
PC_LOAD_LETTER Posted January 12, 2008 Posted January 12, 2008 120*120 was the size i used when i made mine and i remember the instructions i read said that was the max.
neo Posted January 14, 2008 Author Posted January 14, 2008 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.
solid2005 Posted April 26, 2009 Posted April 26, 2009 dud how can i edit in windows edition example i will add my email there how can i add in windows edition?
redxii Posted April 26, 2009 Posted April 26, 2009 (edited) 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, 2009 by redxii
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now