MSFN Forum: HFSLIP (original thread) - MSFN Forum

Jump to content


  • 37 Pages +
  • « First
  • 35
  • 36
  • 37
  • You cannot start a new topic
  • This topic is locked

HFSLIP (original thread) Rate Topic: -----

#721 User is offline   Kapo 

  • Junior
  • Pip
  • Group: Members
  • Posts: 76
  • Joined: 07-September 05

Posted 05 October 2005 - 04:24 AM

but the link for kb892130 doesn't work?


#722 User is offline   tain 

  • Cyber Ops
  • Group: Super Moderator
  • Posts: 3,557
  • Joined: 24-September 05
  • OS:none specified
  • Country: Country Flag

Posted 05 October 2005 - 04:43 AM

@FDV: Can you please explain why these files are in FIX?:

The files in your FIX folder -
CLVSD.ax
CLVSD.AX_
mplayer2.in_
NTDETECT.COM
NTLDR
WINNT.SIF


...and shouldn't the .ax files be in the expert codecs folder?

#723 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,363
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 05 October 2005 - 08:32 AM

I thought I would try out this app, just to see how well it works etc. but I'm a little lost.

People on this board are talking about directories which don't exist by default.
Where is the documentation on those?

I have an MSI which I would like to add, but where do I put it?
I tried the HFSVPK directory, and it was added to the service pack folder, but it wasn't added to the svcpack.inf file. It therefore will not run!
The msi contains only a few files which I think will be installed to a certain location, and registered probably with registry settings added too. The msi suggests it was made with wise 3.51 installer if that helps any.

Is there a particular order in which the svcpack.inf entries are added?
I want an exe to be installed prior to the cmd file containing its tweaks etc.

#724 User is offline   fdv 

  • MSFN Expert
  • Group: Developers
  • Posts: 1,109
  • Joined: 16-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 05 October 2005 - 09:04 AM

TAiN, those are TommyP's and I believe he had them there just as part of a test build he was making. I have corrected this list to what he told me he actually uses.

Yzöwl - see the first post.
documentation
http://www.vorck.com/2ksp5.html
http://www.vorck.com/hfslip.html

Kapo - kb892130 is gone from microsoft's site because they replaced it with 898588.

This post has been edited by fdv: 05 October 2005 - 10:27 AM


#725 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,363
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 05 October 2005 - 09:15 AM

The first page is for Windows 2000 sp5, I'm using it for XP

I have read http://www.vorck.com/hfslip.html though! Those secret folders and including msi files are not explained.

HFSVPK does, when you run the slipstream, the contents of that folder are looked at and relevant entries are written to svcpack.inf, compressed to svcpack.in_ and added to I386.

<Edit>
From HFSLIP_50928.cmd:
FOR /F "USEBACKQ DELIMS==" %%I IN (`DIR /A-D /OGN /B HFSVPK\*.exe`) DO (
IF EXIST HFSVPK\%%I ECHO %%I>> SVCPACK.INF
)


FOR /F "USEBACKQ DELIMS==" %%I IN (`DIR /A-D /OGN /B HFSVPK\*.cmd`) DO (
	IF EXIST HFSVPK\%%I ECHO %%I>> SVCPACK.INF
	)
It is therefore only looking for exe and cmd files in that folder, so where do I put my inf reg vbs and msi files?
</Edit>

This post has been edited by Yzöwl: 05 October 2005 - 09:33 AM


#726 User is offline   Oleg_II 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 679
  • Joined: 06-August 04

Posted 05 October 2005 - 10:00 AM

Yzöwl
When you run the script in a folder there are a few new sub-folders appear in the main folder where you place hot-fixes and additional files (you certainly found it already, sorry for explaining this, just in case).

Not sure if your MSI installer could be placed in any HFSLIP folder:

FDVFILES folder is for fdv's IE-removal files.
FIX folder for your customize files or files you want to replace in the source (like notepad.ex_, winnt.sif, ntdetect.com and ntldr for w2k).
HF folder is for hot fixes only (!).
HFCABS folder is for DirectX and IE6 cabs (you can also place LegitCheckControl.cab there).
HFSVPK folder is for .cmd files, inf files, .reg files and silent switchless snstallers (only .cmd and .exe files are ran from svcpack.inf! .inf and .reg files are ran through a newly created HFSLIP.CMD that you can find in SVCPACK folder after slipstreaming).
HFSVPK_SW folder is for programs with a /Q:A /R:N silent switch.
MSIEXT folder is for a msi-extractor tool.
SOURCE folder is for the distributive.

So there is no folder to place your own MSI file.
I have one MSI installer in my installation that I run through a .cmd file (this .cmd file can be ran from cmdlines.txt or placed in HFSVPK). It istalls good with /qn Reboot=Suppress switch.

I personally use HFSLIP to slipstream hot-fixes, DirectX and (theoretically because I don't ;) IE6 (Windows 2000 here). I aslo slipstream all my tweaks and install all my appz with an .inf file and a .cmd file placed in HFSVPK (this way I don't need OEM folder and even winnt.sif - just theoretically because I use it in fact :) And they are easier to manage if you have all of them in separate file that you can edit any moment AFTER slipstreaming (For example, you don't like a program and you can just delete it from appz.cmd and no need to uncab svcpack.in_, edit it and cab it again. And you can specify any swich for a program in appz.cmd too).

I hope you like the scipt and the result you get after running it ;) I sincerely hope on this because your knowlege and experience in batch-cripting is well-known in this forum and may be usefull for all users :)

This post has been edited by Oleg_II: 05 October 2005 - 12:14 PM


#727 User is offline   fdv 

  • MSFN Expert
  • Group: Developers
  • Posts: 1,109
  • Joined: 16-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 05 October 2005 - 10:27 AM

Yzöwl, didn't know you gots the xp. you're right , MSI instructions are not in there. sorry about that. i'll clarify this with TP. in 2k, they go into the HF folder, and you use the MSICabExtract.exe file; this is the first time this MSI issue has come up in connection with 2k3/xp and this needs to be answered so i'll document that when TP tells me what's up.

as for svcpack.in_, that's right too, i was misremembering, i'll edit my post to prevent confusion. ok i'll admit it's been a long time since i've looked at the code :P

a few folks have PMs from me, check your inboxes.

This post has been edited by fdv: 05 October 2005 - 10:31 AM


#728 User is offline   tommyp 

  • MSFN Addict
  • Group: Developers
  • Posts: 1,675
  • Joined: 09-January 04
  • OS:none specified
  • Country: Country Flag

Posted 05 October 2005 - 10:56 AM

To clarify, if you have an MSI type hotfix, you place the update into the HF folder and you need to fill the MSIEXT folder with the msi-extractor tool. The tool is a relatively small, and is totally harmless even if you don't have any MSI type hotfixes. Personally, I just leave that tool in that folder and leave it. If HFSLIP needs it, then it's used. But, if HFSLIP calls it and you decided to not have it there, don't cry to me saying HFSLIP doesn't work. :)

@FDV, "didn't know you gots the xp" That's f-n funny! You made it sound like a disease!

@Oleg_II - Thanks for your help. Greatly appreciate it.

@TAin - In the event that we get our own forum, I'll post directions on how to slipstream lots of codecs into the source.

#729 User is offline   ratba_tardly 

  • Newbie
  • Group: Members
  • Posts: 22
  • Joined: 03-October 05

Posted 05 October 2005 - 03:04 PM

Wait...what I said was, I will use my computer at work to build the directory (ies) and then take it home on a CD or DVD, thereby eliminatiing the need to install the OS first at home, only to reinstall without all the junk. Then I was talking about what a pleasure it will be to spend my last ten days on the job goofing off rather than doing an honest day. I can't see what the "insult" was, right down to the smiley. Saug, what the hell are you talking about?!

#730 User is offline   murvun 

  • Junior
  • Pip
  • Group: Members
  • Posts: 76
  • Joined: 19-July 05

Posted 05 October 2005 - 11:31 PM

ratba_tardly: use hfslip to slipstream something into the source. but if you talk about "reinstall without all the junk" you should perhaps look for nlite?

you talk about one additional reinstall. try to imagine, how many installations tommyp and fdv made while developing hfslip.

and try to imagine, how many installations everyone made while understanding and testing hfslip.

regards

murvun

This post has been edited by murvun: 06 October 2005 - 01:40 AM


#731 User is offline   saugatak 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 300
  • Joined: 15-July 05

Posted 05 October 2005 - 11:39 PM

ratba, maybe I was being overly sensitive, didn't quite understand what you were saying.

my apologies.

#732 User is offline   fdv 

  • MSFN Expert
  • Group: Developers
  • Posts: 1,109
  • Joined: 16-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 06 October 2005 - 11:35 PM

Supporting HFSLIP (if you want to -- no offense taken if you don't put this in your sig!)

Put this in your signature of your profile to add an "HFSLIP" icon to the bottom of your posts.

[url=http://www.msfn.org/board/index.php?showforum=129][img]http://www.vorck.com/images/hfslip-small.png[/img][/url]


It's small and unobtrusive. Let's get word out about this new forum for October. In November I'll probably take the graphic down. You'd be surprised how much a simple logo eats up in bandwidth, being reloaded constantly :blink:

Again, it's strictly for those who want to -- nothing personal if you don't... :D
But if you don't, HFSLIP will just turn off your refridgerator via TCP/IP and let your girlfriend's Hagen-Daazs go all melty...

This post has been edited by fdv: 07 October 2005 - 12:03 AM


#733 User is offline   rfliu2000 

  • Group: Members
  • Posts: 4
  • Joined: 04-August 05

Posted 07 October 2005 - 12:12 AM

FOR /F %%I IN ('FINDSTR /I /B Localization !SRC!\i386\PRODSPEC.INI') DO SET %%I
IF "!Localization!"=="Arabic" SET LG=AR ARA
IF "!Localization!"=="Chinese(Taiwan)" SET LG=CHT
REM FOR WINDOWS server 2003 CHINESE
IF "!Localization!"=="Simplified Chinese" SET LG=CHS ZHCN ZH ZH-CN
IF "!Localization!"=="Chinese(PRC)" SET LG=CHS ZHCN ZH ZH-CN

IF "!Localization!"=="Czech" SET LG=CZ CZE
IF "!Localization!"=="Dansk" SET LG=DA DAN
IF "!Localization!"=="German" SET LG=DE DEU
IF "!Localization!"=="???????" SET LG=EL ELL
IF "!Localization!"=="English" SET LG=EN ENU
IF "!Localization!"=="ESPANISH" SET LG=ES ESP
IF "!Localization!"=="Finnish" SET LG=FI FIN
IF "!Localization!"=="French" SET LG=FR FRA
IF "!Localization!"=="Hebrew" SET LG=HE HEB IW
IF "!Localization!"=="Hungarian" SET LG=HU HUN
IF "!Localization!"=="Italian" SET LG=IT ITA
IF "!Localization!"=="JAPANESE" SET LG=JA JAP NEC
IF "!Localization!"=="KOREAN" SET LG=KO KOR
IF "!Localization!"=="Dutch" SET LG=NL NLD
IF "!Localization!"=="Norwegian" SET LG=NO NOR NB NN
IF "!Localization!"=="Polski" SET LG=PL PLK
IF "!Localization!"=="Portuguese" SET LG=PT PTG
IF "!Localization!"=="Portuguese(Brasil)" SET LG=PT-BR PTB PTBR
IF "!Localization!"=="Russian" SET LG=RU RUS
IF "!Localization!"=="Swedish" SET LG=SV SVE
IF "!Localization!"=="TURKISH" SET LG=TR TRK
IF "!Localization!"=="TIAWANESE" SET LG=TW TWN ZHTW ZH-TW

FOR %%S IN (%LG%) DO (
IF EXIST HFCABS\SCRIPT%%S.CAB EXPAND HFCABS\SCRIPT%%S.CAB -F:* !WORK!\IE6EXP
IF EXIST HFCABS\SCRIP%%S.CAB EXPAND HFCABS\SCRIP%%S.CAB -F:* !WORK!\IE6EXP
)


#734 User is offline   xper 

  • Insane Clown
  • Group: Administrator
  • Posts: 15,633
  • Joined: 16-August 01
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 October 2005 - 03:24 AM

This topic is too long and is closed.

Please feel free to open new topic in HFSLIP forum.

Thanks

Share this topic:


  • 37 Pages +
  • « First
  • 35
  • 36
  • 37
  • You cannot start a new topic
  • This topic is locked

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



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