CRLUPD.CAB:
It's not really an IE6 component, rather an
Update Available to Revoke Fraudulent Microsoft Certificates Issued by VeriSign
I will try to run it from SVCPACK.INF with the downloaded file from the link and run command
CRLUPD.EXE /Q:A /R:N rather than "slipstream" it into source because i believe that files are no longer needed after installation. The update only run one command:
updcrl.exe -e -u verisignpub1.crl which revoke fraudulent issued certificates.
If you go to your %systemroot%\System32 dir and right-click on the
verisignpub1.crl file, you have a context menu to install it.
When you do a regular install of IE6 SP1, both
crlupd.exe and
mscrlrev.dll are not copied to %systemroot%\System32
Although the size of the 3 files are next to nothing (14 Kb), i don't need to copy files that are not mandatory in my %systemroot%\system32 dir.
(archived infos here)
SLIPSTREAM:
I have written script directive files to achieve this modifications with GNU
SED, the Stream EDitor v3.02.80
How to:
- append new IE files to DOSNET.INF and TXTSETUP.SIF
- add new dlls to register to SYSSETUP.INF
- add some tools to your source CD for UA install
- (optional) delete VML install from SYSSETUP.INF
If you don't want to perform some action (like optionaly removing VML install), just add a # to the line in the script directive file.
Tool and files needed:
- nLite modified SYSSETUP.DLL by 7imo
- REG.EXE from support tools
- DISKPART.EXE downloaded from M$
- WNTIPCFG.EXE downloaded from M$
- append new dlls to register to syssetup.inf [OleControlDlls] section sorted in same order as XP:
sed -f syssetup.sed bak\syssetup.inf > syssetup.inf
- append new files to dosnet.inf [Files] section sorted:
sed -f dosnet.sed bak\dosnet.inf > dosnet.inf
- append new files to txtsetup.sif [SourceDisksFiles] section sorted:
sed -f txtsetup.sed bak\txtsetup.sif > txtsetup.sif
Copy dosnet.inf txtsetup.sif and renamed (but not compressed) syssetup.in_ + syssetup.dl_ + compressed reg.ex_ diskpart.ex_ wntipcfg.ex_to your i386 dir.
layout.inf left unchanged.
SLIPSTREAM2:
i have written a sed directive file
IE.SED
and a batch file IE.CMD
expand ie.in_ ie.inf
::using a directive file ie.txt
sed -f ie.sed ie.inf > ie.new
if exist ie.old del /f /q ie.old
ren ie.inf ie.old
ren ie.new ie.inf
to apply new data values from XP IE.INF to 2K IE.INF
Full list of diff. here:
patchIE.txt
sed directive file need some additions currently # rem'ed
to apply to 2K IE.INF
+ some minors modifications based from
ieexcep.inf file
+ modifications based from Hotfix
SLIPSTREAM3:
I have written an
IE2KInst.inf file to add new data values in registry and register new dlls. Currently the WSH part don't install correctly when launched from svcpack.inf.
"%SystemRoot%\System32\rundll32.exe setupapi.dll,InstallHinfSection DefaultInstall 132 .\IE2KInst.inf"
It works as expected when i right-click on the inf file and select install on the context menu.
This post has been edited by Bilou_Gateux: 22 August 2005 - 02:06 AM