Mince j'arrive trop tard !
J'ai réussi a créer un logiciel sous dos qui fait ça ^^
il faut d'abord créer un batch avec :
@echo off
cls
echo.
echo 1. Ajouter un logo et informations sous XP :
echo 2. Ajouter un logo et information sous Vista/Seven :
set choice=
set /p choice=Quel est votre choix ? :
if not '%choice%'=='' set choice=%choice:~0,1%
cls
echo.
if '%choice%'=='1' goto logoxp
if '%choice%'=='2' goto logovista
:logoxp
set /p LEC=Quelle est la letre de votre clee USB ? :
pause
copy %LEC%:\logo\oeminfo.ini C:\WINDOWS\system32
copy %LEC%:\logo\oemlogo.bmp C:\WINDOWS\system32
pause
exit
:logovista
set /p LEC=Quelle est la letre de votre clee USB ? :
pause
copy %LEC%:\logo\oeminfo.ini C:\WINDOWS\system32
copy %LEC%:\logo\oemlogo.bmp C:\WINDOWS\system32
%LEC%:\logo\logovista.reg
pause
Pour vista il faut créer une clé registre :
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"Logo"="c:\windows\system32\oemlogo.bmp"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"Manufacturer"="Entreprise"
"Logo"="c:\windows\system32\oemlogo.bmp"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"Model"="Intel"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"SupportHours"="9h30 12h00 à 14h00 19h00"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"SupportPhone"="XX XX XX XX"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"SupportURL"="www.URL.com"
REG ADD [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"logo"="c:\\windows\\system32\\oemlogo.bmp"
Pour XP il faut creer un texte oeminfo.txt :
[general]
Manufacturer=Entreprise
Model=XX XX XX XX XX
[Support Information]
Line1=
Line2=
Line3=
Line4=
Line5=
Line6=
Line7=
Line8=
Et après il suffit d'avoir un logo nommé oemlogo du bmp de la bonne taille et c'est bon.
Bon ok c'est plus dur que les truc tout fait, mais au moins j'ai la satisfaction de l'avoir fait tout seul ^^