Jump to content

Unable to integrate...


Recommended Posts


:wacko: I even tried that, and it STILL won't work :wacko:

Here's a basic breakdown of my CD and it's location. p.s. the hotfix no. I used on my previous post is made up...doesn't work with any of the 71 hotfixes I'm trying to apply.what the heck is going on?

RUNNING WindowsXP VRMPOEM_EN SP2

C:\XPCD

C:\XPCD\I386

post-9418-1159775441_thumb.jpg

Edited by XL-DJK95355
Link to comment
Share on other sites

To add to this, here's some of the hotfixes I'm applying to my CD Copy:

The /integrate procedure isn't working on these one's either:

KB873333 KB885835 KB885836 KB886185 KB887472 KB888302 KB890046 KB890859

KB891781 KB893756 KB894391 KB896344 KB896358 KB896423 KB896424 KB896428

KB898461 KB899587 KB899589 KB899591 KB900485 KB900725 KB900930 KB901017

KB901214 KB902400 KB904706 KB904942 KB905414 KB905749 KB908519 KB908531

etc... etc...

Link to comment
Share on other sites

Try this VBS script

Place the script in the folder that has the updates that you want to intergrate

Save As IntergrateKB.vbs

Dim Fso   : Set Fso = CreateObject("Scripting.FileSystemObject")
Dim Act : Set Act = CreateObject("Wscript.Shell")
Dim XPCD : XPCD = Act.ExpandEnvironmentStrings("%SystemDrive%\XPCD\")
Dim File, Folder, StrF
Set Folder = Fso.GetFolder(Fso.GetParentFolderName(WScript.ScriptFullName))
Set File = Folder.Files
'/-> Fixes
If Fso.FileExists(XPCD & "i386\svcpack.inf") Then Fso.DeleteFile(XPCD & "i386\svcpack.inf") End If
If Fso.FileExists(XPCD & "i386\svcpack.in_") Then Fso.DeleteFile(XPCD & "i386\svcpack.in_") End If
If Fso.FolderExists(XPCD & "i386\svcpack") Then Fso.DeleteFolder(XPCD & "i386\svcpack") End If
'/-> Collection For The Updates
For Each StrF In File
If InStr(StrF.Name,"exe") Or InStr(StrF.Name,"Exe") Or InStr(StrF.Name,"EXE") Then
If InStr(StrF.Name,"KB") Or InStr(StrF.Name,"Kb") Or InStr(StrF.Name,"kb") Then
Act.Popup "Preparing To Intergrate This Update " &_
Chr(62) & " " & strF.Name, 2, "Intergrate Update", 0 + 32 + 4096
Act.Run(strF.Name & " /passive /norestart /L /o /integrate:" & XPCD),1,True
End If
End If
Next

Link to comment
Share on other sites

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...