Jump to content

Unattended KB929969 with IE 7


Recommended Posts

I have an XP-SP2 unattended install that works fine with KB929969 and IE 6, but I've been working on a seperate disk to develop XP-SP2 with IE 7. I cannot get KB929969 to install after the IE7. I've tried the SVCPACK method with IE 7, & KB929969, and get a dreaded ICFNT.DLL error (Cannot find Internet Connection Wiard), I've tried the RunOnce method, applying the KB929969 patch after IE7 installs, and tried many swithes, but when I go to WIndows Update, I still have to patch the deployment with KB929969. Anyone experience this have the answer? IE 7 is deploying without errors, it's just the January 07 KB929969 update I cannot get to install.Thanks

Edited by tboneshep
Link to comment
Share on other sites


I don't use nLite. But after giving it some more thought, I think this is the best solution

Add it to RunOnce

Copy KB929969.exe to

$OEM$\$1\KB929969.exe

This will transfer the file to %systemdrive% during installation

Then in your RunOnceEx.cmd

@echo off
REG ADD "HKLM\SOFTWARE\Microsoft\GdiDetectionTool" /v "GDITool" /t REG_DWORD /d "00000001" /f
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Installing Applications" /f

REG ADD %KEY%30 /VE /D "Microsoft .NET Framework 2.0" /f
REG ADD %KEY%30 /V 1 /D "%systemdrive%\install\dotnet2.exe" /f

REG ADD %KEY%40 /VE /D "Microsoft Internet Explorer 7" /f
REG ADD %KEY%40 /V 1 /D "%systemdrive%\install\IE7.exe /q" /f
REG ADD %KEY%40 /V 2 /D "%systemdrive%\install\KB929969.cmd" /f

REG ADD %KEY%50 /VE /D "Windows Media Player 11" /f
REG ADD %KEY%50 /V 1 /D "%systemdrive%\install\wmp11.exe /q" /f
REG ADD %KEY%50 /V 2 /D "%systemdrive%\install\KB920342.exe /q /n /z" /f

REG ADD %KEY%\999 /VE /D "SysPrep and Reboot" /f
REG ADD %KEY%\999 /V 1 /D "%systemdrive%\install\Reboot.cmd" /f

EXIT

Your KB929969.cmd file should contain

REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /V KB929969.exe /q /n /z /D "%systemdrive%" /f

So on the next boot, it will automatically install it. Better yet, skip the kb929969.cmd and just include that line in your Reboot.cmd file.

Edited by Gee
Link to comment
Share on other sites

This line, if added to your clean up batch file should get the update to install on the next boot.

REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /V KB929969.exe /q /n /z /D "%systemdrive%" /f

You have IE7 in RunOnceEx.cmd, the last part of RunOnceEx should run a clean up batch file and then you include the above line. After reboot, it should install the update.

Link to comment
Share on other sites

Hi @Gee, i have used it but it has not installed.

Sorry for the late response. I just tried it and it didn't work for me either.

Back to the drawing board.

I don't use nlite, so I have to find an alternate way of doing it.

Link to comment
Share on other sites

  • 2 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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