[29.07.09] Internet Explorer 8 RTM Slipstream Addon
[29.07.09] Internet Explorer 8 RTM Slipstream Addon
Because i didn't find any other IE8 Final addons around here yet.. i just localized my german addon i made yesterday fo you guys:
German Version tested and working:
Download IE8 Slipstream Addon v1.0.7
Size: 12,60 MB
MD5: B18238BD2AAA3511A9C14FD3C2442569
have fun
29.07.09: updated to v1.0.7
changelog:
- New KB972260 & KB972636
- KB969897 replaced by KB971930
- KB971180 replaced by KB972636
German Version tested and working:
Download IE8 Slipstream Addon v1.0.7
Size: 12,60 MB
MD5: B18238BD2AAA3511A9C14FD3C2442569
have fun
29.07.09: updated to v1.0.7
changelog:
- New KB972260 & KB972636
- KB969897 replaced by KB971930
- KB971180 replaced by KB972636
Last edited by Sereby on Wed Jul 29, 2009 5:00 pm, edited 8 times in total.
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Sereby you may want to also (self)register these files, they are not registered by the INF file but they are by the IE8 setup
Code: Select all
11,,msdbg2.dll,1
16422,"Internet Explorer",iedvtool.dll,1
16422,"Internet Explorer",pdm.dll,1
@5eraph
hehe nice that you still know it
maybe later when i have the time this day i can try to make a x64 version
@ricktendo64
i updated the version.. download-link is the same.
but could you tell me how you discovered that?
i couldnt find the lines where the ie8 setup does this. the only section where this files are is the "BinariesToHideUpdatesFor" section.
but nothing about a self-register section
hehe nice that you still know it

maybe later when i have the time this day i can try to make a x64 version
@ricktendo64
i updated the version.. download-link is the same.
but could you tell me how you discovered that?
i couldnt find the lines where the ie8 setup does this. the only section where this files are is the "BinariesToHideUpdatesFor" section.
but nothing about a self-register section
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
I discovered it integrating ie8 into my updatepack, you re-install ie8 (using the installer) overtop your slipstreamed ie8 after first boot, once while registering the 3 files before ie re-install and second without registering and you will see that the one where you dont register them is missing more reg entries (use regshot or installwatch to track changes)
Like I said you will not find it in the update.inf but the setup does register them somehow
Like I said you will not find it in the update.inf but the setup does register them somehow
Last edited by ricktendo64 on Sat Mar 21, 2009 10:42 am, edited 1 time in total.
What I normally do is check to see if a DLL is a COM-only DLL*, and if it is, then it has to be registered, either by self-reg or by manually adding the various HKCR registry keys (because a COM-only DLL that isn't registered might as well not even be copied--it's useless unless registered). Trying to pick through all the installation INFs to see what needs to be registered is too tedious and error-prone (esp. since in many cases, the INF does not represent a comprehensive list of things that happen during install), and this is a much easier shortcut that I take.Sereby wrote:i couldnt find the lines where the ie8 setup does this. the only section where this files are is the "BinariesToHideUpdatesFor" section.
but nothing about a self-register section
* To determine if a DLL is a COM-only DLL, load it up into the Dependency Walker and look at the DLL's export table. If you see DllGetClassObject, then the DLL is a COM DLL. If there are no other exported functions aside from DllCanUnloadNow, DllRegisterServer, DllUnregisterServer, DllInstall, or DllGetVersion, (list is not exhaustive, but these are the most common), then it's a COM-only DLL.
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Its the same for Windows Search 4.0 hotfix, if you follow only the update.inf and create your addon it will not work...the install/setup does something extra, it installs a service so you have to find a way to add the service for your addon to work
Pasha_ZZZ its in the addon already
Edit: I forgot to mention but this regtweak no longer works
You have to add the microsoft.com in alloweddomains subkey
Pasha_ZZZ its in the addon already

Edit: I forgot to mention but this regtweak no longer works
Code: Select all
HKCU,"Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{6E32070A-766D-4EE6-879C-DC1FA91D2FC3}\iexplore","Flags",0x10001,4
Code: Select all
HKCU,"Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{5AE58FCF-6F6A-49B2-B064-02492C66E3F4}\iexplore","Flags",0x10001,4
HKCU,"Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{5AE58FCF-6F6A-49B2-B064-02492C66E3F4}\iexplore\AllowedDomains\microsoft.com",,0x10
Last edited by ricktendo64 on Sat Mar 21, 2009 12:24 pm, edited 1 time in total.
All you guys need to do is download the IE8 installer from Microsoft and make an addon using the "/passive /update-no /norestart" switches. These switches should work with pretty much any MS self-extracting installers that you download.
Code: Select all
[general]
builddate=27/01/2009
title=Internet Explorer 8 Beta
description=Made by ELiTEFX 2009
language=Multi
version=0.1
website=http://www.microsoft.com/windows/internet-explorer/worldwide- sites.aspx
[sysoc]
[dosnet_files]
[txtsetup_files]
[ExtraFileEdits]
rvmtemp\svcpack.inf|[SetupHotfixesToRun]|[SetupHotfixesToRun]<NEXT>IE8RC1Betax86.exe /passive /update-no /norestart<NEXT>|1
Last edited by ELiTE on Sat Mar 21, 2009 4:43 pm, edited 2 times in total.
- mr_smartepants
- Posts: 824
- Joined: Thu May 18, 2006 5:56 am
- Location: Cambridgeshire, UK
If you insist on installing via svcpack, then use the following switches.Pasha_ZZZ wrote:Addon integration replaces files in the distrib, but with silent install method some files copied twice (windows install old files & IE install new files), occupies double space at disk.
"IE8-WindowsXP-x86-ENU.exe /nobackup /update-no /norestart /quiet"
The /nobackup switch will not keep the old ie6 files.
Well, I think Microsoft knows how to config an installer by now. I made my IE8 addon a couple months ago. Runs like a charm with the switches I used. Doesn't take up any extra disc space as the new files overwrite the old ones as far as I can see. I let the MS installer do it's thing.
Last edited by ELiTE on Sat Mar 21, 2009 6:53 pm, edited 1 time in total.
have you posted these hundreds, if not thousands of addons for the benefit of others?ELiTE wrote:Well, I think Microsoft knows how to config an installer by now. I made my IE8 addon a couple months ago. Runs like a charm with the switches I used. Doesn't take up any extra disc space as the new files overwrite the old ones as far as I can see. I let the MS installer do it's thing. After years of practice I think I know my installers and how they function . I could be wrong but after making hundreds if not a thousand or so addons I doubt it. Have a Good Day Folks!
if not then i would not be so quick to be critical of other addons, unless you are willing to offer an alternative to their work
Well, I criticize no one. I just offered a viable alternative. As far as posting my addons. Why can't others LEARN how to do it themselves as I have learned from the Moderators of this site. We're not talking Brain Surgery here just a bit of time and effort. If I can ever be of help feel free to PM me.
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Well getting back on topic here, seems that occache.dll (Downloaded Program Files) is following its brother webcheck.dll (Offline Web Pages) and is no longer self registering so it causes a error in setuperr.log
Side effect of this is the custom folder icon is no longer visible in %WinDir% so there is need to set the file and folder attributes using AddReg (I explain how here) so you can view the icon listed in desktop.ini

Code: Select all
Error:
El programa de instalación no pudo registrar el control OLE C:\WINDOWS\system32\occache.dll debido al siguiente error:
GetProcAddress devolvió un error 127 (no se encontró el procedimiento especificado).

nice findings 
like this?
edit: sure that its this?:
on my german system i have to use this guid:
{6E32070A-766D-4EE6-879C-DC1FA91D2FC3}

Code: Select all
[Attributes.AddReg]
;Attribute für "Offline Web Pages" ändern
HKLM,Software\Microsoft\Windows\CurrentVersion\RenameFiles\ Win,,,"%10%"
HKLM,Software\Microsoft\Windows\CurrentVersion\RenameFiles\ Win,FOLDER,,"Offline Web Pages,1"
HKLM,Software\Microsoft\Windows\CurrentVersion\RenameFiles\ Win,FILE,,"Offline Web Pages\desktop.ini,5"
;Attribute für "Downloaded Program Files" ändern
HKLM,Software\Microsoft\Windows\CurrentVersion\RenameFiles\ Win,,,"%10%"
HKLM,Software\Microsoft\Windows\CurrentVersion\RenameFiles\ Win,FOLDER,,"Downloaded Program Files,1"
HKLM,Software\Microsoft\Windows\CurrentVersion\RenameFiles\ Win,FILE,,"Downloaded Program Files\desktop.ini,5"
edit: sure that its this?:
Code: Select all
HKCU,"Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{5AE58FCF-6F6A-49B2-B064-02492C66E3F4}\iexplore","Flags",0x10001,4
HKCU,"Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{5AE58FCF-6F6A-49B2-B064-02492C66E3F4}\iexplore\AllowedDomains\microsoft.com",,0x10
{6E32070A-766D-4EE6-879C-DC1FA91D2FC3}
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
I plan on revising/changing it later but it goes something like:
Revised bellow
And whatever the GUID is for you it does not matter, just be sure to add the AllowedDomains subkey
Revised bellow
And whatever the GUID is for you it does not matter, just be sure to add the AllowedDomains subkey
Last edited by ricktendo64 on Sun Mar 22, 2009 12:11 pm, edited 1 time in total.
code65536 wrote:* To determine if a DLL is a COM-only DLL, load it up into the Dependency Walker and look at the DLL's export table.
Where might I find build 6001 or 7000 for x64? The latest build available on Dependency Walker's homepage is 6000. Should it matter if I use build 6000 instead of the latest build?code65536 wrote:In case anyone is curious, 2.2.7000:
http://rapidshare.com/files/193180690/d ... 00-x86.rar
6000 is just fine. AFAICT, the only changes from 6000 to 6001/7000 are some optimizations and minor bug fixes. In terms of functionality, they appear to be identical. Microsoft bundles the DW in its driver kits.5eraph wrote:code65536 wrote:* To determine if a DLL is a COM-only DLL, load it up into the Dependency Walker and look at the DLL's export table.Where might I find build 6001 or 7000 for x64? The latest build available on Dependency Walker's homepage is 6000. Should it matter if I use build 6000 instead of the latest build?code65536 wrote:In case anyone is curious, 2.2.7000:
http://rapidshare.com/files/193180690/d ... 00-x86.rar
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Revised, added quotes and removed spaces:
Code: Select all
; File/Folder Attributes
; R=1; H=2; S=4; HS=6; SHR=7
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",,,"%10%"
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FOLDER1,,"Downloaded Program Files,1"
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FILE1,,"Downloaded Program Files\desktop.ini,6"
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FOLDER2,,"Offline Web Pages,1"
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FILE2,,"Offline Web Pages\desktop.ini,6"
Dll in IE8 :
shlwapi.dll 6.0.2900.2995 in XP SP3 6.0.2900.5512
browseui.dll 6.0.2900.2995 6.0.2900.5512
shdocvw.dll 6.0.2900.2995 KB958515 6.0.2900.5694
I found why IE8 is so slow on my PC. Should be deleted in HKLM and HKCU
SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains
SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains
shlwapi.dll 6.0.2900.2995 in XP SP3 6.0.2900.5512
browseui.dll 6.0.2900.2995 6.0.2900.5512
shdocvw.dll 6.0.2900.2995 KB958515 6.0.2900.5694
I found why IE8 is so slow on my PC. Should be deleted in HKLM and HKCU
SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains
SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains
HKLM,"SOFTWARE\Microsoft\CTF\TIP\{1188450c-fdab-47ae-80d8-c9633f71be64}\LanguageProfile\0x00000000\{63800dac-e7ca-4df9-9a5c-20765055488d}","DummyTip",,"IE7"
HKLM,"SOFTWARE\Microsoft\CTF\TIP\{1188450c-fdab-47ae-80d8-c9633f71be64}\LanguageProfile\0x00000000\{63800dac-e7ca-4df9-9a5c-20765055488d}","Enabled",0x10001,0
in this addon 0x00000000 is replaced by 0.
This 0x00000000 is in key path so we'd better keep the full string.
HKLM,"SOFTWARE\Microsoft\CTF\TIP\{1188450c-fdab-47ae-80d8-c9633f71be64}\LanguageProfile\0x00000000\{63800dac-e7ca-4df9-9a5c-20765055488d}","Enabled",0x10001,0
in this addon 0x00000000 is replaced by 0.
This 0x00000000 is in key path so we'd better keep the full string.
@sereby
because when i was making my ie8 addon, i used BeyondCompare to compare mine with yours, then I found this.
I always replace these "useless" string by adding "," as prefix and suffix, like this:
",0x00000000," -> ",0,"
this gruantees the whole string is matched, therefore i have no errors like yours...
and you may be interested in this:
and...more... this line is missing in your addon:
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\{26923b43-4d38-484f-9b9e-de460746276c}","IsInstalled",0x10001,1
This line is at the beginning of update.inf of IE8 installer(a little different though, I have modified it).
--------------------------------
EDIT:
on zorro1's post and your reply to his post:
he is right.
these 3 files are intended for installation of IE8 on windows with these of lower file versions.
because when i was making my ie8 addon, i used BeyondCompare to compare mine with yours, then I found this.
I always replace these "useless" string by adding "," as prefix and suffix, like this:
",0x00000000," -> ",0,"
this gruantees the whole string is matched, therefore i have no errors like yours...
and you may be interested in this:
well, if there are no quotes, both "<" and ">" are ok for a key path, but here we'd better remove them. This is most like M$'s brain is broken again....HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","",0,"IE8 Uninstall Stub"
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","ComponentID",0,"IEUDINIT"
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","DontAsk",0x10001,2
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","IsInstalled",0x10001,1
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","Locale",0,"*"
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","StubPath",0,"%11%\ieudinit.exe"
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\<{12d0ed0d-0ee0-4f90-8827-78cefb8f4988}","Version",0,"8,0,6001,0"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}",,0,"Internet Explorer"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}","ComponentID",0,"IEACCESS"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}","Dontask",0x10001,02,00,00,00
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}","Locale",0,"*"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}","LocalizedName",0,"@%11%\ie4uinit.exe.mui,-21"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}","StubPath",0,"%11%\ie4uinit.exe -UserIconConfig"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{26923b43-4d38-484f-9b9e-de460746276c}","Version",0,"8,0,6001,18702"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}",,0,"Browser Customizations"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}","ComponentiD",0,"BRANDING.CAB"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}","IsInstalled",0x10001,01,00,00,00
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}","Locale",0,"*"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}","LocalizedName",0,"@%11%\iedkcs32.dll.mui,-3052"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}","StubPath",0,"""%11%\rundll32.exe"" ""%11%\iedkcs32.dll"",BrandIEActiveSetup SIGNUP"
HKLM,"Software\Microsoft\Active Setup\Installed Components\>{60B49E34-C7CC-11D0-8953-00A0C90347FF}","Version",0,"8,0,6001,18702"
and...more... this line is missing in your addon:
HKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\{26923b43-4d38-484f-9b9e-de460746276c}","IsInstalled",0x10001,1
This line is at the beginning of update.inf of IE8 installer(a little different though, I have modified it).
--------------------------------
EDIT:
on zorro1's post and your reply to his post:
he is right.
these 3 files are intended for installation of IE8 on windows with these of lower file versions.
someone made a post about this over a the msfn site http://technet.microsoft.com/en-gb/ie/cc889351.aspx looks kind of interesting
The IEAK (which has been around for many, many years) is targeted for big IT depts that want to customize their IE deployment. Could be useful for people looking to customize IE, but won't help with people trying to make true IE addons.ccl0 wrote:someone made a post about this over a the msfn site http://technet.microsoft.com/en-gb/ie/cc889351.aspx looks kind of interesting
@yumeyao
sure to remove these < and > ?
maybe ms sometimes know what they do :-/?
and about zorro1's post:
i didn't asked for the files.. i asked for the reg-entries because i dont want to delete unknown reg-keys.. who knows for what they are needed.... M$
@zorro1
these files are newer because they are not language neutral
sure to remove these < and > ?
maybe ms sometimes know what they do :-/?
i dont have this line in update.inf o.o" this guid is just in the lines you posted aboveHKLM,"SOFTWARE\Microsoft\Active Setup\Installed Components\{26923b43-4d38-484f-9b9e-de460746276c}","IsInstalled",0x10001,1
This line is at the beginning of update.inf of IE8 installer(a little different though, I have modified it).
and about zorro1's post:
i didn't asked for the files.. i asked for the reg-entries because i dont want to delete unknown reg-keys.. who knows for what they are needed.... M$

@zorro1
these files are newer because they are not language neutral
@Sereby,
sure. you know it's a GUID, should be something like {00000000-0000-0000-0000-000000000000}.
if you have took a look at wmp.inf, you'll see keypath with ">", but without quotes at each side. for example:
and the final path in registry is without ">", means it is equal to ,%KEY_ACTIVESETUP%\%DSHOW_GUID%.
In this case, double quotes are added at both sides of the key paths, so the ">" is remained at the final path in registry. I guess it must be an error made by M$.
sure. you know it's a GUID, should be something like {00000000-0000-0000-0000-000000000000}.
if you have took a look at wmp.inf, you'll see keypath with ">", but without quotes at each side. for example:
Code: Select all
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,,2,"%NEW_INSTALLNAME%"
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,ComponentID,,"WMPACCESS"
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,IsInstalled,0x00010003,2
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,DontAsk,0x00010001,2
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,Locale,,"*"
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,StubPath,2,"%17%\unregmp2.exe /HideWMP"
HKLM,%KEY_ACTIVESETUP%\>%DSHOW_GUID%,Version,2,"1,0,0,0"
In this case, double quotes are added at both sides of the key paths, so the ">" is remained at the final path in registry. I guess it must be an error made by M$.
@Sereby
these files are newer because they are not language neutral
When you install IE8 on XP SP3 these DLLs are not replaced
I have edit ie8.inf to remove errors in setuperr.log
rename this dll to tmp and add in ie8.cab
imgutil.tmp
inseng.tmp
mshtml.tmp
msrating.tmp
pngfilt.tmp
webcheck.tmp
inetcpl.tmp
occache.tmp
entries_ie8.ini
[dosnet_files]
d1,pendmove
[txtsetup_files]
pendmove.exe = 100,,,,,,_x,2,0,0
these files are newer because they are not language neutral
When you install IE8 on XP SP3 these DLLs are not replaced
I have edit ie8.inf to remove errors in setuperr.log
Code: Select all
[RegisterFiles.AddReg]
HKLM,"SYSTEM\CurrentControlSet\Control\Session Manager","AllowProtectedRenames",0x00010001,01,00,00,00
HKLM,"%RUNONCE%","IE8noer01",,"pendmove %11%\dllcache\imgutil.dll"
HKLM,"%RUNONCE%","IE8noer02",,"pendmove %11%\imgutil.dll"
HKLM,"%RUNONCE%","IE8noer03",,"pendmove %11%\dllcache\inseng.dll"
HKLM,"%RUNONCE%","IE8noer04",,"pendmove %11%\inseng.dll"
HKLM,"%RUNONCE%","IE8noer05",,"pendmove %11%\dllcache\mshtml.dll"
HKLM,"%RUNONCE%","IE8noer06",,"pendmove %11%\mshtml.dll"
HKLM,"%RUNONCE%","IE8noer07",,"pendmove %11%\dllcache\msrating.dll"
HKLM,"%RUNONCE%","IE8noer08",,"pendmove %11%\msrating.dll"
HKLM,"%RUNONCE%","IE8noer09",,"pendmove %11%\dllcache\pngfilt.dll"
HKLM,"%RUNONCE%","IE8noer10",,"pendmove %11%\pngfilt.dll"
HKLM,"%RUNONCE%","IE8noer11",,"pendmove %11%\dllcache\webcheck.dll"
HKLM,"%RUNONCE%","IE8noer12",,"pendmove %11%\webcheck.dll"
HKLM,"%RUNONCE%","IE8noer13",,"pendmove %11%\imgutil.tm1 %11%\dllcache\imgutil.dll"
HKLM,"%RUNONCE%","IE8noer14",,"pendmove %11%\imgutil.tm2 %11%\imgutil.dll"
HKLM,"%RUNONCE%","IE8noer15",,"pendmove %11%\inseng.tm1 %11%\dllcache\inseng.dll"
HKLM,"%RUNONCE%","IE8noer16",,"pendmove %11%\inseng.tm2 %11%\inseng.dll"
HKLM,"%RUNONCE%","IE8noer17",,"pendmove %11%\mshtml.tm1 %11%\dllcache\mshtml.dll"
HKLM,"%RUNONCE%","IE8noer18",,"pendmove %11%\mshtml.tm2 %11%\mshtml.dll"
HKLM,"%RUNONCE%","IE8noer19",,"pendmove %11%\msrating.tm1 %11%\dllcache\msrating.dll"
HKLM,"%RUNONCE%","IE8noer20",,"pendmove %11%\msrating.tm2 %11%\msrating.dll"
HKLM,"%RUNONCE%","IE8noer21",,"pendmove %11%\pngfilt.tm1 %11%\dllcache\pngfilt.dll"
HKLM,"%RUNONCE%","IE8noer22",,"pendmove %11%\pngfilt.tm2 %11%\pngfilt.dll"
HKLM,"%RUNONCE%","IE8noer23",,"pendmove %11%\webcheck.tm1 %11%\dllcache\webcheck.dll"
HKLM,"%RUNONCE%","IE8noer24",,"pendmove %11%\webcheck.tm2 %11%\webcheck.dll"
HKLM,"%RUNONCE%","IE8noer25",,"pendmove %11%\dllcache\inetcpl.cpl"
HKLM,"%RUNONCE%","IE8noer26",,"pendmove %11%\inetcpl.cpl"
HKLM,"%RUNONCE%","IE8noer27",,"pendmove %11%\inetcpl.tm1 %11%\dllcache\inetcpl.cpl"
HKLM,"%RUNONCE%","IE8noer28",,"pendmove %11%\inetcpl.tm2 %11%\inetcpl.cpl"
HKLM,"%RUNONCE%","IE8noer29",,"pendmove %11%\occache.dll"
HKLM,"%RUNONCE%","IE8noer30",,"pendmove %11%\occache.tm1 %11%\dllcache\occache.dll"
HKLM,"%RUNONCE%","IE8noer31",,"pendmove %11%\occache.tm2 %11%\occache.dll"
HKLM,"%RUNONCE%","IE8noer32",0,"%11%\regsvr32.exe /u /s %11%\browsewm.dll"
HKLM,"%RUNONCE%","IE8noer33",0,"%11%\regsvr32.exe /u /s %11%\cdfview.dll"
HKLM,"%RUNONCE%","IE8noer34",0,"%11%\regsvr32.exe /u /s %11%\danim.dll"
HKLM,"%RUNONCE%","IE8noer35",0,"%11%\regsvr32.exe /u /s %11%\datime.dll"
HKLM,"%RUNONCE%","IE8noer36",0,"%11%\regsvr32.exe /u /s %11%\lmrt.dll"
HKLM,"%RUNONCE%","IE8noer37",0,"%11%\regsvr32.exe /s ""%16422%\Internet Explorer\ieproxy.dll"""
HKLM,"%RUNONCE%","IE8noer38",0,"%11%\regsvr32.exe /s ""%16422%\Internet Explorer\iedvtool.dll"""
HKLM,"%RUNONCE%","IE8noer39",0,"%11%\regsvr32.exe /s ""%16422%\Internet Explorer\pdm.dll"""
HKLM,"%RUNONCE%","IE8noer40",0,"%11%\regsvr32.exe /s /i /n %11%\ieframe.dll"
HKLM,"%RUNONCE%","IE8noer41",0,"%11%\regsvr32.exe /s %11%\actxprxy.dll"
HKLM,"%RUNONCE%","IE8noer42",0,"%11%\regsvr32.exe /s %11%\msdbg2.dll"
HKLM,"%RUNONCE%","IE8noer43",,"REG ADD ""HKLM\Software\Clients\StartMenuInternet\IEXPLORE.EXE\DefaultIcon"" /ve /d ""%16422%\Internet Explorer\iexplore.exe,-7"" /f"
;add in
[DestinationDirs]
System32.Copy = 11
;add in
[SourceDisksFiles]
imgutil.tmp = 1
inseng.tmp = 1
mshtml.tmp = 1
msrating.tmp = 1
pngfilt.tmp = 1
webcheck.tmp = 1
inetcpl.tmp = 1
occache.tmp = 1
;add section
[System32.Copy]
imgutil.tm1,imgutil.tmp
inseng.tm1,inseng.tmp
mshtml.tm1,mshtml.tmp
msrating.tm1,msrating.tmp
pngfilt.tm1,pngfilt.tmp
webcheck.tm1,webcheck.tmp
imgutil.tm2,imgutil.tmp
inseng.tm2,inseng.tmp
mshtml.tm2,mshtml.tmp
msrating.tm2,msrating.tmp
pngfilt.tm2,pngfilt.tmp
webcheck.tm2,webcheck.tmp
inetcpl.tm1,inetcpl.tmp
inetcpl.tm2,inetcpl.tmp
occache.tm1,occache.tmp
occache.tm2,occache.tmp
imgutil.tmp
inseng.tmp
mshtml.tmp
msrating.tmp
pngfilt.tmp
webcheck.tmp
inetcpl.tmp
occache.tmp
entries_ie8.ini
[dosnet_files]
d1,pendmove
[txtsetup_files]
pendmove.exe = 100,,,,,,_x,2,0,0
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
I am a little confused on one item here:
Am I correct that I REPLACE the entire old [RegisterFiles.AddReg] section with your new [RegisterFiles.AddReg] section in ie8.inf
Am I correct that I REPLACE the entire old [RegisterFiles.AddReg] section with your new [RegisterFiles.AddReg] section in ie8.inf
zorro1 wrote:@Sereby
these files are newer because they are not language neutral
When you install IE8 on XP SP3 these DLLs are not replaced
I have edit ie8.inf to remove errors in setuperr.log
rename this dll to tmp and add in ie8.cabCode: Select all
[RegisterFiles.AddReg] HKLM,"SYSTEM\CurrentControlSet\Control\Session Manager","AllowProtectedRenames",0x00010001,01,00,00,00 HKLM,"%RUNONCE%","IE8noer01",,"pendmove %11%\dllcache\imgutil.dll" HKLM,"%RUNONCE%","IE8noer02",,"pendmove %11%\imgutil.dll" HKLM,"%RUNONCE%","IE8noer03",,"pendmove %11%\dllcache\inseng.dll" HKLM,"%RUNONCE%","IE8noer04",,"pendmove %11%\inseng.dll" HKLM,"%RUNONCE%","IE8noer05",,"pendmove %11%\dllcache\mshtml.dll" HKLM,"%RUNONCE%","IE8noer06",,"pendmove %11%\mshtml.dll" HKLM,"%RUNONCE%","IE8noer07",,"pendmove %11%\dllcache\msrating.dll" HKLM,"%RUNONCE%","IE8noer08",,"pendmove %11%\msrating.dll" HKLM,"%RUNONCE%","IE8noer09",,"pendmove %11%\dllcache\pngfilt.dll" HKLM,"%RUNONCE%","IE8noer10",,"pendmove %11%\pngfilt.dll" HKLM,"%RUNONCE%","IE8noer11",,"pendmove %11%\dllcache\webcheck.dll" HKLM,"%RUNONCE%","IE8noer12",,"pendmove %11%\webcheck.dll" HKLM,"%RUNONCE%","IE8noer13",,"pendmove %11%\imgutil.tm1 %11%\dllcache\imgutil.dll" HKLM,"%RUNONCE%","IE8noer14",,"pendmove %11%\imgutil.tm2 %11%\imgutil.dll" HKLM,"%RUNONCE%","IE8noer15",,"pendmove %11%\inseng.tm1 %11%\dllcache\inseng.dll" HKLM,"%RUNONCE%","IE8noer16",,"pendmove %11%\inseng.tm2 %11%\inseng.dll" HKLM,"%RUNONCE%","IE8noer17",,"pendmove %11%\mshtml.tm1 %11%\dllcache\mshtml.dll" HKLM,"%RUNONCE%","IE8noer18",,"pendmove %11%\mshtml.tm2 %11%\mshtml.dll" HKLM,"%RUNONCE%","IE8noer19",,"pendmove %11%\msrating.tm1 %11%\dllcache\msrating.dll" HKLM,"%RUNONCE%","IE8noer20",,"pendmove %11%\msrating.tm2 %11%\msrating.dll" HKLM,"%RUNONCE%","IE8noer21",,"pendmove %11%\pngfilt.tm1 %11%\dllcache\pngfilt.dll" HKLM,"%RUNONCE%","IE8noer22",,"pendmove %11%\pngfilt.tm2 %11%\pngfilt.dll" HKLM,"%RUNONCE%","IE8noer23",,"pendmove %11%\webcheck.tm1 %11%\dllcache\webcheck.dll" HKLM,"%RUNONCE%","IE8noer24",,"pendmove %11%\webcheck.tm2 %11%\webcheck.dll" HKLM,"%RUNONCE%","IE8noer25",,"pendmove %11%\dllcache\inetcpl.cpl" HKLM,"%RUNONCE%","IE8noer26",,"pendmove %11%\inetcpl.cpl" HKLM,"%RUNONCE%","IE8noer27",,"pendmove %11%\inetcpl.tm1 %11%\dllcache\inetcpl.cpl" HKLM,"%RUNONCE%","IE8noer28",,"pendmove %11%\inetcpl.tm2 %11%\inetcpl.cpl" HKLM,"%RUNONCE%","IE8noer29",,"pendmove %11%\occache.dll" HKLM,"%RUNONCE%","IE8noer30",,"pendmove %11%\occache.tm1 %11%\dllcache\occache.dll" HKLM,"%RUNONCE%","IE8noer31",,"pendmove %11%\occache.tm2 %11%\occache.dll" HKLM,"%RUNONCE%","IE8noer32",0,"%11%\regsvr32.exe /u /s %11%\browsewm.dll" HKLM,"%RUNONCE%","IE8noer33",0,"%11%\regsvr32.exe /u /s %11%\cdfview.dll" HKLM,"%RUNONCE%","IE8noer34",0,"%11%\regsvr32.exe /u /s %11%\danim.dll" HKLM,"%RUNONCE%","IE8noer35",0,"%11%\regsvr32.exe /u /s %11%\datime.dll" HKLM,"%RUNONCE%","IE8noer36",0,"%11%\regsvr32.exe /u /s %11%\lmrt.dll" HKLM,"%RUNONCE%","IE8noer37",0,"%11%\regsvr32.exe /s ""%16422%\Internet Explorer\ieproxy.dll""" HKLM,"%RUNONCE%","IE8noer38",0,"%11%\regsvr32.exe /s ""%16422%\Internet Explorer\iedvtool.dll""" HKLM,"%RUNONCE%","IE8noer39",0,"%11%\regsvr32.exe /s ""%16422%\Internet Explorer\pdm.dll""" HKLM,"%RUNONCE%","IE8noer40",0,"%11%\regsvr32.exe /s /i /n %11%\ieframe.dll" HKLM,"%RUNONCE%","IE8noer41",0,"%11%\regsvr32.exe /s %11%\actxprxy.dll" HKLM,"%RUNONCE%","IE8noer42",0,"%11%\regsvr32.exe /s %11%\msdbg2.dll" HKLM,"%RUNONCE%","IE8noer43",,"REG ADD ""HKLM\Software\Clients\StartMenuInternet\IEXPLORE.EXE\DefaultIcon"" /ve /d ""%16422%\Internet Explorer\iexplore.exe,-7"" /f" ;add in [DestinationDirs] System32.Copy = 11 ;add in [SourceDisksFiles] imgutil.tmp = 1 inseng.tmp = 1 mshtml.tmp = 1 msrating.tmp = 1 pngfilt.tmp = 1 webcheck.tmp = 1 inetcpl.tmp = 1 occache.tmp = 1 ;add section [System32.Copy] imgutil.tm1,imgutil.tmp inseng.tm1,inseng.tmp mshtml.tm1,mshtml.tmp msrating.tm1,msrating.tmp pngfilt.tm1,pngfilt.tmp webcheck.tm1,webcheck.tmp imgutil.tm2,imgutil.tmp inseng.tm2,inseng.tmp mshtml.tm2,mshtml.tmp msrating.tm2,msrating.tmp pngfilt.tm2,pngfilt.tmp webcheck.tm2,webcheck.tmp inetcpl.tm1,inetcpl.tmp inetcpl.tm2,inetcpl.tmp occache.tm1,occache.tmp occache.tm2,occache.tmp
imgutil.tmp
inseng.tmp
mshtml.tmp
msrating.tmp
pngfilt.tmp
webcheck.tmp
inetcpl.tmp
occache.tmp
entries_ie8.ini
[dosnet_files]
d1,pendmove
[txtsetup_files]
pendmove.exe = 100,,,,,,_x,2,0,0
Rick... am I correct that your reg entries and completely different than the entries that zorro1 references for the 3 files? Does that mean I would include yours and his in this addon?
ricktendo64 wrote:Revised, added quotes and removed spaces:Code: Select all
; File/Folder Attributes ; R=1; H=2; S=4; HS=6; SHR=7 HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",,,"%10%" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FOLDER1,,"Downloaded Program Files,1" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FILE1,,"Downloaded Program Files\desktop.ini,6" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FOLDER2,,"Offline Web Pages,1" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FILE2,,"Offline Web Pages\desktop.ini,6"
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Yes you can just add them to any AddReg section in ie.inf, until he releases 1.0.2compstuff wrote:Rick... am I correct that your reg entries and completely different than the entries that zorro1 references for the 3 files? Does that mean I would include yours and his in this addon?
ricktendo64 wrote:Revised, added quotes and removed spaces:Code: Select all
; File/Folder Attributes ; R=1; H=2; S=4; HS=6; SHR=7 HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",,,"%10%" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FOLDER1,,"Downloaded Program Files,1" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FILE1,,"Downloaded Program Files\desktop.ini,6" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FOLDER2,,"Offline Web Pages,1" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\RenameFiles\Win",FILE2,,"Offline Web Pages\desktop.ini,6"
BTW dont edit the inf with the entries from zorro1 unless you integrate pendmove and know exactly what you are doing
Rick... thanks for all your advice I really appreciate it... especially since I definitely DON'T know what I'm doing with pendmove
I will just add your reg settings and delete:
shlwapi.dll 6.0.2900.2995 in XP SP3 6.0.2900.5512
browseui.dll 6.0.2900.2995 6.0.2900.5512
shdocvw.dll 6.0.2900.2995 KB958515 6.0.2900.5694
Thanks again...

I will just add your reg settings and delete:
shlwapi.dll 6.0.2900.2995 in XP SP3 6.0.2900.5512
browseui.dll 6.0.2900.2995 6.0.2900.5512
shdocvw.dll 6.0.2900.2995 KB958515 6.0.2900.5694
Thanks again...
updated to v1.0.2
changelog:
- Fix: ActiveX PopUp when first visiting Microsoft Update
- Fix: "Offline Web Pages" & "Downloaded Program Files" folders now correctly created
- Fix: Severals Registry-Fixes & Code-Optimization
Download v1.0.2
changelog:
- Fix: ActiveX PopUp when first visiting Microsoft Update
- Fix: "Offline Web Pages" & "Downloaded Program Files" folders now correctly created
- Fix: Severals Registry-Fixes & Code-Optimization
Download v1.0.2
I just tried v1.02 using RVM_Integrator_1.6.1b1 on a source that was previously intergrated to include the following and WMP11 via Booogy's slipstreamer.
ARemoval_LANG_DirDeleteAddon.cab
BRemoval_WINNTUPG_DirDeleteAddon_v1.1.cab
CPatchAddon_SFC_OS_v14.7z
EPatchAddon_TCPIP_100_v14d.7z
FNR_UPHC_Addon.cab
Java6u13.exe
Kels_CPLBonus_addon_v9.2.6.rar
RedDXRuntimes_0.7.0_32bit.exe
RedDXManaged_1.1.0.exe
Ricks_SpywareBlaster4.1_addon_90225.7z
SFX_KLite_Mega_470.exe
SFX_QT-LITE_280.exe
ShockWave_Slim_11.5.0.595_AddOn.cab
SpyBotSD_1.6.2_AddOn.cab
Stimpy_JD976_DotNetFx_3in1_Addon_v2.2.7z
WGA_Validation_AddOn_1.9.9.1_-_redxii.7z
YAdobe_Acrobat_Reader_9.1.0_AddOn.cab
setuperr.log showed:
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\mshtml.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\msrating.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\inseng.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\occache.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\webcheck.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\imgutil.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\pngfilt.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
I also got an advanced INF install error for WMP11: c:\program files\windows media player\WMPEnc.exe /regserver reason: system cannot find the file specified.
I will try again from scratch later unless you have any ideas before then...
ARemoval_LANG_DirDeleteAddon.cab
BRemoval_WINNTUPG_DirDeleteAddon_v1.1.cab
CPatchAddon_SFC_OS_v14.7z
EPatchAddon_TCPIP_100_v14d.7z
FNR_UPHC_Addon.cab
Java6u13.exe
Kels_CPLBonus_addon_v9.2.6.rar
RedDXRuntimes_0.7.0_32bit.exe
RedDXManaged_1.1.0.exe
Ricks_SpywareBlaster4.1_addon_90225.7z
SFX_KLite_Mega_470.exe
SFX_QT-LITE_280.exe
ShockWave_Slim_11.5.0.595_AddOn.cab
SpyBotSD_1.6.2_AddOn.cab
Stimpy_JD976_DotNetFx_3in1_Addon_v2.2.7z
WGA_Validation_AddOn_1.9.9.1_-_redxii.7z
YAdobe_Acrobat_Reader_9.1.0_AddOn.cab
setuperr.log showed:
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\mshtml.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\msrating.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\inseng.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\occache.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\webcheck.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\imgutil.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
Error:
Setup could not register the OLE Control C:\WINDOWS\system32\pngfilt.dll because of the following error:
GetProcAddress returned error 127 (the specified procedure could not be found).
I also got an advanced INF install error for WMP11: c:\program files\windows media player\WMPEnc.exe /regserver reason: system cannot find the file specified.
I will try again from scratch later unless you have any ideas before then...
from IE7, M$ stopped making these *.dll files self-registerable, yet they are still called by syssetup.inf to do the job, that's why you see these errors.
c:\program files\windows media player\WMPEnc.exe /regserver
in order to execute this command line, you must have quotes on:
"c:\program files\windows media player\WMPEnc.exe" /regserver
This should be an issue related to boooggy's slipstreamer, ask him for it, or try another:
Mine Onepiece's
c:\program files\windows media player\WMPEnc.exe /regserver
in order to execute this command line, you must have quotes on:
"c:\program files\windows media player\WMPEnc.exe" /regserver
This should be an issue related to boooggy's slipstreamer, ask him for it, or try another:
Mine Onepiece's
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras