I want to install these apps at T-13 mark with the RunOnceEx method on WinXP SP2 (integrated), but not in svcpack.inf:
Windows Media Player 10
.NET Framework 1.1+SP1+Language pack (Spanish)
MSN Messenger 7 (I don't know the silent switches).
I've wrote the following Inf:
RunOnceEx.inf
CODE
[Version]
Signature = "$Windows NT$"
[DefaultInstall]
AddReg = Extras
[Extras]
HKLM,"%RunOnceEx%\",Title,0,"Installing Applications"
HKLM,"%RunOnceEx%\",Flags,0x00010001,20
HKLM,"%RunOnceEx%\install01",,,"Windows Media Player 10"
HKLM,"%RunOnceEx%\install01",1,,"MP10Setup.exe /c:""setup_wm.exe /Q /R:N /DisallowSystemRestore"" /q:A"
; Here would go the .NET and MSN7 Registry entries (??)
[Strings]
RunOnceEx = "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx"
Signature = "$Windows NT$"
[DefaultInstall]
AddReg = Extras
[Extras]
HKLM,"%RunOnceEx%\",Title,0,"Installing Applications"
HKLM,"%RunOnceEx%\",Flags,0x00010001,20
HKLM,"%RunOnceEx%\install01",,,"Windows Media Player 10"
HKLM,"%RunOnceEx%\install01",1,,"MP10Setup.exe /c:""setup_wm.exe /Q /R:N /DisallowSystemRestore"" /q:A"
; Here would go the .NET and MSN7 Registry entries (??)
[Strings]
RunOnceEx = "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx"
In addition, I don't know how to integrate .NET 1.1 SP1+Language Pack into the original installer of .NET Framework 1.1, and I don't know the silent switches to install SETUPNT.exe (MSN7).
I have read the Gosh Guide, and this forum several times, but no go.
According to Gosh Guide, I edit TXTSETUP.SIF, and I add:
CODE
runonceex.inf = 1,,,,,,,20,0,0
[HiveInfs.Fresh]
AddReg = RunOnceEx.inf,Extras
[HiveInfs.Fresh]
AddReg = RunOnceEx.inf,Extras
And DOSNET.INF:
CODE
[SourceDisksFiles]
d1,runonceex.inf
d1,runonceex.inf
But I get an installation error (Windows Setup internal error. Please, contact with vendor, blah, blah, blah...)
Finally, I want to add the following Registry tweak for WMP10:
CODE
HKCU,"SOFTWARE\Microsoft\MediaPlayer\Preferences","AcceptedPrivacyStatement",0x00010003,1
I put in HIVEDEF.INF, but this has no effect.
Any help would be very appreciated.
Thanks in advance, and regards