HFSLIP - Test releases Support ended.
#582
Posted 25 May 2006 - 07:27 AM
thanks alot to you, tomcat76!
i am using livestate too and had problems because wmplayer10 and scriptde.exe gave me errors during the installation process (. i just tried your new test-release (HFSLIP_60523a) and now it works!
during second copying phase in setup i got errors for 40 files, starting with
qasf.dll
scrobj.dll
scrrun.dll
wshcon.dll
...
so if you encounter problems with livestate or winnt.exe installations - try this new release!
#583
Posted 25 May 2006 - 11:24 AM
#584
Posted 26 May 2006 - 03:37 AM
I have question about:
KB912817
KB918005
Are they handled by current HFSLIP?
#585
Posted 26 May 2006 - 03:47 AM
#586
Posted 26 May 2006 - 04:54 AM
If no new test version will be released, the only difference between the current test version and the next final will be: added support for IUCTL.CAB in conjunction with RVM Update Pack when WindowsUpdateAgent20.exe is absent.
Checked OK:
- WinXP SP2 English + RVM Update Pack
- WinXP SP2 Dutch + SWFLASH.CAB
Still to be checked: WinXP SP1 + Win2K USP5
This post has been edited by Tomcat76: 26 May 2006 - 05:17 AM
#587
Posted 26 May 2006 - 12:47 PM
for hotifxes supported by HFSLIP, you may always cross refer with:
Windows XP updates and hotfixes (maintained by Tomcat76)
http://www.msfn.org/...showtopic=62177
Windows XP (all) (maintained by the guy)
http://www.msfn.org/...showtopic=74840
#588
Posted 27 May 2006 - 02:52 AM
I am going to do my slipstream and finally reinstall my current faulty system. :-)
#589
Posted 27 May 2006 - 05:01 AM
Tomcat76, on May 7 2006, 10:25 AM, said:
I tried latest test release without nlite; wmpui.dll should be updated since I have WMP8 (which I usually remove with nLite).
Other updates seem to be alright (though I still have to test two of them I did not have in \HF)
edit: @Tomcat, 833989 seems to be needed but you do not list it. It corrects the GDI+ vulnerability.
It is really confusing because lots of applications are concerned but I think I finally understood it:
-KB833987 updates Windows GDI+ component
-KB833989 updates IE6 SP1 GDI+ component
See this page (in french) http://www.microsoft.com/france/technet/se...e/ms04-028.mspx
The IE6 patch is listed at the middle of the page and contains vgx.dll.
This post has been edited by Camarade_Tux: 27 May 2006 - 05:11 AM
#590
Posted 27 May 2006 - 05:15 AM
We're nearing in. I still need to do some stress-testing on Win2K, especially with USP5 as there seem to be some problems in that domain.
#591
Posted 27 May 2006 - 06:25 AM
This post has been edited by Tomcat76: 27 May 2006 - 06:26 AM
#592
Posted 27 May 2006 - 06:27 AM
All updates are present, tested without nLite.
HFNetChk reports all WMP updates are present, MDAC update not present (normal since I don't want it), and two files version greater as expected.
And just a quick note : these files are post-installed:
Q914798.EXE
Q840374.EXE
Q832483.EXE
Thanks a lot for this version.
#593
Posted 27 May 2006 - 08:21 AM
Still to go: Win2K + USP5...
@Camarade_Tux: That's great. Thanks
#594
Posted 27 May 2006 - 11:28 AM
- my w2ksp51.exe file is corrupt
- the standard MS service pack switches are not supported by USP5
I checked the FAQ on the Hotstream forum and noticed that only the /integrate method is listed as a supported slipstreaming method. So I tried that, but the result is the same.
I'm now in the process of downloading the latest version... Be back in an hour or so...
This post has been edited by Tomcat76: 27 May 2006 - 11:28 AM
#595
Posted 27 May 2006 - 12:34 PM
#596
Posted 27 May 2006 - 04:26 PM
HFSLIP_60422_CMD.png (9.78K)
Number of downloads: 70
HFSLIP_60422_Folder.png (6.43K)
Number of downloads: 152
Notice the filesize differences...and that even stream.sys is missing from it.
HFSLIP_60526b_CMD.png (10.81K)
Number of downloads: 43
HFSLIP_60526b_Folder.png (6.44K)
Number of downloads: 46
Also, a missing file on the first line - not sure what, and haven't checked if my perfectly working ver has that or not.
HFSLIP_FirstLine.png (13.44K)
Number of downloads: 143
I know that Tomcat rearranged a lot of slipstreaming code, and while poking around today I caught a few errors. Sadly, I didn't notice them when I originally duplicated them, so I had to fix them in my ver as well. Due to the particular order though, they had no effect in my version.
It appears that "ELSE" is not a recognizable command unless it's on the same line as an IF.
:HFSPACK4
ECHO SLIPSTREAMING SERVICE PACK...
SET HFSLIPSVPACK=1
MD SPEX\i386
IF "%VERSION%"=="2000" (
IF EXIST HF\w2ksp5*.exe (CALL :UNPACK_2KUSP) ELSE IF EXIST HF\w2ksp4*.exe (CALL :UNPACK_2KSP4)
)
IF "%VERSION%"=="XP" (
IF EXIST HF\*835935*.exe (CALL :UNPACK_XPSP2) ELSE IF EXIST HF\xpsp1a*.exe (CALL :UNPACK_XPSP1A) ELSE IF EXIST HF\xpsp1*.exe (CALL :UNPACK_XPSP1)
)
IF "%VERSION%"=="2003" (
ECHO SLIPSTREAMING SERVICE PACK 1 INTO WINDOWS 2003. PLEASE BE PATIENT.
FOR /F %%I IN ('DIR/B HFSPACK\*889101*.exe') DO START/WAIT HFSPACK\%%I /Q /X:SPEX\
)
IF EXIST SOURCE\I386\SVCPACK.INF DEL/Q/F SOURCE\I386\SVCPACK.INF
START/WAIT SPEX\i386\update\update.exe -u -n -o -q -s:"%~dp0SOURCE\"
RD/Q/S SPEX
ECHO FINISHED SLIPSTREAMING THE SERVICE PACK.
ECHO.
GOTO EOF
:UNPACK_2KSP4
ECHO SLIPSTREAMING SERVICE PACK 4 INTO WINDOWS 2000. PLEASE BE PATIENT.
FOR /F %%I IN ('DIR/B HF\w2ksp4*.exe') DO START/WAIT HF\%%I /Q /X:SPEX\
GOTO :EOF
:UNPACK_2KUSP
ECHO SLIPSTREAMING GURGELMEYER USP5 INTO WINDOWS 2000. PLEASE BE PATIENT.
FOR /F %%I IN ('DIR/B HF\w2ksp5*.exe') DO START/WAIT HF\%%I /Q /X:SPEX\
GOTO :EOF
:UNPACK_XPSP1
ECHO SLIPSTREAMING SERVICE PACK 1 INTO WINDOWS XP. PLEASE BE PATIENT.
FOR /F %%I IN ('DIR/B HF\xpsp1*.exe') DO START/WAIT HF\%%I /Q /X:SPEX\i386\
GOTO :EOF
:UNPACK_XPSP1A
ECHO SLIPSTREAMING SERVICE PACK 1A INTO WINDOWS XP. PLEASE BE PATIENT.
FOR /F %%I IN ('DIR/B HF\xpsp1a*.exe') DO START/WAIT HF\%%I /Q /X:SPEX\i386\
GOTO :EOF
:UNPACK_XPSP2
ECHO SLIPSTREAMING SERVICE PACK 2 INTO WINDOWS XP. PLEASE BE PATIENT.
FOR /F %%I IN ('DIR/B HF\*835935*.exe') DO START/WAIT HF\%%I /Q /X:SPEX\
DEL/Q/F SPEX\i386\update\setupapi.dll
GOTO :EOF
However, the above folder sizes were taken after applying the ELSE fix. Now I need to test if my latest ISO will install, which I doubt it will with several hundred missing files. I'll report back on if it works or not.
#597
Posted 27 May 2006 - 07:19 PM
If the problem you are experiencing is indeed an HFSLIP script problem, I guess Tomcat must have gone too crazy with the cleanup
#598
Posted 27 May 2006 - 08:16 PM
#599
Posted 28 May 2006 - 02:23 AM
Kramy, on May 28 2006, 04:16 AM, said:
Either way, the one remaining problem (414 missing files) is not an HFSLIP problem. I suggest we continue that discussion in the other thread.
I've sent a new final version of HFSLIP to TommyP a couple of hours ago which is based on 60527c but has the USP5 functionality stripped out. I'll let him decide what we're gonna do...
#600
Posted 28 May 2006 - 04:18 PM



Help

Back to top









