Jump to content

Recommended Posts

Posted

remember the date of your last unattended installation?

add this to your installation batch (oeminfo.ini must not exist yet)

quick'n'dirty:

SET D=%SYSTEMROOT%\system32\
echo [General] >> "%D%oeminfo.ini"
echo Manufacturer=Unattended XP-SP2 Installation >> "%D%oeminfo.ini"
echo Model=Professional Edition >> "%D%oeminfo.ini"
echo [Support Information] >> "%D%oeminfo.ini"
echo Line1=XP SP2 Professional Edition >> "%D%oeminfo.ini"
echo Line2=Unattended version (v1.0a) >> "%D%oeminfo.ini"
echo Line3= >> "%D%oeminfo.ini"
echo Line4=Date of installation: %date% >> "%D%oeminfo.ini"


Posted

Thanks for the info, I added a few things to mine

cmdow @ /HID
set file=%systemroot%\system32\oeminfo.ini
if exist %file% del %file% /s
goto %computername%

:Batcave
echo [General] >> %file%
echo Manufacturer=Wayne Enterprises >> %file%
echo Model=%computername% >> %file%
echo [Support Information] >> %file%
echo line1=Your Installer Today Was >>. >> %file%
echo line2=Benners >> %file%
echo line3= >> %file%
echo line4=Vocation .............................. >> %file%
echo line5=Supreme Unattended Overlord :-)  >> %file%
echo line6= >> %file%
echo line7=Windows Version ..................... >> %file%
echo line8=XP Professional with Service Pack 2 >> %file%
echo line9= >> %file%
echo line10=Support Link ................. >> %file%
echo line11=Email addy here >> %file%
echo line12=Before Mithering Me,  STFW @ http://www.google.co.uk >> %file%
echo line13= >> %file%
echo line14=Installation Date >> %file%
echo line15=%date% @ %time% >> %file%
goto end

:Batcave2
; different details here
goto end

:Batcave3
; different details here
goto end

:Minky
; different details here
goto end

:Stacey
; different details here

:end

Posted

I like using copy

SET D=%SYSTEMROOT%\system32\

echo Line4=Date of installation: %date% >> "%D%pt2.txt"

copy "%D%pt1.txt"+"%D%pt2.txt"+"%D%pt3.txt" "%D%oeminfo.ini"

  • 3 weeks later...
Posted

im not that good in cmd commands so please help..

how to create that if no computername matches that than will run something generell?

e.g. maybe the name of the PC is 'HELLO' gut in cmd only

:PC1

:PC2

are in the cmd - how to do that HELLO get's something generell witch is in the CMD

(i know i can create OEM before with $$\System32\ - but the timestamp wouldn't be in present)

  • 2 weeks later...
Posted

Thanx for it.But I got this problem when creating the oeminfo the date is displayed as :? £ 20/01/2005 @ 0:12:56,21 ????

with 2 squares before the £.

What might be the problem?

Posted

I am using oeminfo.ini for information about "build" - on my server I got sheet with differences on every build - so if there is problem on 100 PCs with same build, I know where to look :)

  • 4 weeks later...
Posted

I tweaked the batch file little bit and came up with below.It listes fixes under the svcpack directory so you could know which hotfixes you installed.

@echo off

SET D=%SYSTEMROOT%\system32\
REM delete oeminfo.ini if exists
if exist "%D%oeminfo.ini" del   "%D%oeminfo.ini" /q
FOR %%d IN (c: d: e: f: g: h: i: j: k: l: m: n: o: p: q: r: s: t: u: v: w: x: y: z:) DO IF EXIST %%d\WIN51IP SET CDROM=%%d


echo [General] >> "%D%oeminfo.ini"
echo Manufacturer=Windows XP-SP2 Setup >> "%D%oeminfo.ini"
echo Model=Professional Version >> "%D%oeminfo.ini"
echo [Support Information] >> "%D%oeminfo.ini"
echo Line1=Installation Date: %date% >> "%D%oeminfo.ini"
echo Line2= >> "%D%oeminfo.ini"
echo Line3=Installed Hotfixes:>> "%D%oeminfo.ini"
echo Line4= >> "%D%oeminfo.ini"

REM Line Number
SET i=5

REM List  quickfixes without exe extension
For /F "TOKENS=1 delims=.exe"  %%j in ( 'dir /B %CDROM%\I386\svcpack\KB*.exe' )do ( ( set kbname=%%j ) & (call :myprint) )
GOTO :EOF

:myprint
echo Line%i%=%kbname%   >> "%D%oeminfo.ini"
SET /A i+=1

:EOF

Posted

@LaptoniC:

That is an awesome script.

2 suggestions though:

1) Can you make it delete any prior info in OEMInfo?

2) Can you make it display ONLY the hotfix name, and not the extension (".exe"), so that the info displayes "KB832414" rather than "KB832414.exe"?

thanks!!!

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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