MSFN Forum: Ok..I give up for now...help needed - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Ok..I give up for now...help needed Rate Topic: -----

#1 User is offline   -.-PhanTom-.- 

  • Member
  • PipPip
  • Group: Members
  • Posts: 106
  • Joined: 13-October 05

Posted 17 October 2005 - 03:25 AM

Hey all

I am trying to integrate windows installer and windows update into XP.
I have already integrated hotfixes using Nlite, and have then edited the scvpack.ini files as follows:
[Version]  
Signature="$Windows NT$"  
MajorVersion=5  
MinorVersion=1  
BuildNumber=2600  
  
[SetupData]  
CatalogSubDir="\i386\SVCPACK"  
  
[ProductCatalogsToInstall]  
CODECS10.CAT  
DRM10.CAT  
KB888656.CAT  
KB893241.CAT  
KB895181.CAT  
KB895316.CAT  
KB904555.CAT  
MPSTUB10.CAT  
WMDM10.CAT  
WMFSDK10.CAT  
WMP10.CAT  
WMSET10.CAT  
KB873339.CAT  
KB884020.CAT  
KB885250.CAT  
KB885835.CAT  
KB885836.CAT  
KB885932.CAT  
KB886185.CAT  
KB887472.CAT  
KB887742.CAT  
KB888113.CAT  
KB888240.CAT  
KB888302.CAT  
KB889527.CAT  
KB890046.CAT  
KB890859.CAT  
KB891781.CAT  
KB892313.CAT  
KB893066.CAT  
KB893357.CAT  
KB893756.CAT  
KB894391.CAT  
KB896344.CAT  
KB896358.CAT  
KB896422.CAT  
KB896423.CAT  
KB896428.CAT  
KB896626.CAT  
KB896688.CAT  
KB897663.CAT  
KB898461.CAT  
KB899587.CAT  
KB899589.CAT  
KB899591.CAT  
KB900725.CAT  
KB900930.CAT  
KB901017.CAT  
KB901214.CAT  
KB902400.CAT  
KB903234.CAT  
KB904412.CAT  
KB904706.CAT  
KB905414.CAT  
KB905749.CAT  
KB906569.CAT  
KB907865.CAT  
  
[SetupHotfixesToRun]  
WindowsInstaller-KB893803-v2-x86.exe /wuforce /quiet /norestart" /f  
WindowsUpdateAgent20-x86.exe /wuforce /quiet /norestart" /f  
LegitCheckControl.msi /q" /f  
  
  
[CatalogHeader]  
  
; Customized by nLite - www.nliteos.com


But this part just isn't working :(

Quote

[SetupHotfixesToRun]WindowsInstaller-KB893803-v2-x86.exe /wuforce /quiet /norestart" /f
WindowsUpdateAgent20-x86.exe /wuforce /quiet /norestart" /f
LegitCheckControl.msi /q" /f


Windows installer loads a promt windowd during unattended install.
Update agent and legitcontrol is not installed.

I have compressd svcpack.ini to svcpack.in_ and placed it in /i386 dir and also kept the uncompressed file in /i386/svcpack

What else do I have to do to make "[SetupHotfixesToRun]" work?


#2 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 7,756
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 17 October 2005 - 03:32 AM

Easy just use ryanvm's pack. Plus there are now addons in his forum for things like wga and windows update agent.

This post has been edited by kelsenellenelvian: 17 October 2005 - 03:33 AM


#3 User is offline   -.-PhanTom-.- 

  • Member
  • PipPip
  • Group: Members
  • Posts: 106
  • Joined: 13-October 05

Posted 17 October 2005 - 03:34 AM

Which one are you referring to? the full 1.3.1 pack?
No thanks, I don't want to install too many unneccessary hotfixes....

This post has been edited by -.-PhanTom-.-: 17 October 2005 - 03:35 AM


#4 User is offline   eirogge 

  • www.eirogge.de
  • PipPip
  • Group: Members
  • Posts: 218
  • Joined: 07-February 04

Posted 17 October 2005 - 06:03 AM

the
" /f
at the end is very wrong - delete it.

i'm relatively sure that svcpack.inf cannot execute msi-files. try iexpress.exe to make a self-extracting and self-installing exe-file out of it. http://greenmachine.msfnhosting.com/ should help you there.

further try to rename the files to something short.

and my last tip: throw out the useless cat-file stuff. the following works great for me:

[Version] 
Signature="$Windows NT$"
MajorVersion=5
MinorVersion=1
BuildNumber=2600

[SetupData]
CatalogSubDir=I386\SVCPACK

[SetupHotfixesToRun]
dotnet11.exe
wmplay10.exe
winupdv6.exe
KB873339.exe /q /n /z
KB885250.exe /q /n /z
KB885626.exe /q /n /z
KB885835.exe /q /n /z
some more here

This post has been edited by eirogge: 17 October 2005 - 06:07 AM


#5 User is offline   -.-PhanTom-.- 

  • Member
  • PipPip
  • Group: Members
  • Posts: 106
  • Joined: 13-October 05

Posted 17 October 2005 - 06:15 AM

Ok, will try the msi thing..

I extracted the files from the wgainstaller exefile....had legitcontrols.msi and setup.exe inside.
Making a slient exe just using the msi as input did not work...so do I need to include the setup.exe in the iexpress process as well? If so, how?

Or do I have to use the GUIRunOnce method for this one instead?


this file you have "winupdv6.exe" ...what is that?
Switchless version of...?

This post has been edited by -.-PhanTom-.-: 17 October 2005 - 06:59 AM


#6 User is offline   eirogge 

  • www.eirogge.de
  • PipPip
  • Group: Members
  • Posts: 218
  • Joined: 07-February 04

Posted 17 October 2005 - 01:45 PM

winupdv6.exe is Windows Update v6 (http://update.micros...ndowsupdate/v6/)

concerning wga: just copy LegitControlCheck.dll to system32. that should satisfy windows.

#7 User is offline   -.-PhanTom-.- 

  • Member
  • PipPip
  • Group: Members
  • Posts: 106
  • Joined: 13-October 05

Posted 17 October 2005 - 02:00 PM

View Posteirogge, on Oct 17 2005, 08:45 PM, said:

winupdv6.exe is Windows Update v6 (http://update.micros...ndowsupdate/v6/)

concerning wga: just copy LegitControlCheck.dll to system32. that should satisfy windows.


But where did you get the winupdv6.exe? official MS or selfmade?

repackeded wga exe with silent switches..seems to work ok :)

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy