Jump to content

beppemito

Member
  • Posts

    421
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Italy

Posts posted by beppemito

  1. is this?

    That's odd, it didn't work before for me......

    Anyways RyanVM gave me the courage, and here's the steps (given by him):

    1. First download the .NET framework v1.1 re-distributable package, and run "dotnetfx.exe" with the "/C" switch (to extract contents).

    2. Then download the .NET fw v1.1 SP1 update, and run "NDP1.1sp1-KB867460-X86.exe" with the /XP" switch (to extract contents).

    3. A dialog box asking you where to save the MSP (update patch) comes up, choose where you want to save it (size 18,760 KB).

    4. Rename that MSP to SP1.MSP, and place the extracted contents of dotnetfx.exe (.NET framework installer) in the same directory.

    5. Clean the directory so sp1.msp, data1.cab, and netfx.msi are the only files (3 files) in the directory.

    6. Run the following commands (from a command prompt):

    CODE 

    msiexec /a netfx.msi TARGETDIR="c:\netfx"

    msiexec /p sp1.msp /a c:\netfx\netfx.msi

    These commands created an admin-install point and patch-updated it to .NET SP1 respectively.

    7. Your c:\netfx directory should have 3 items in it after this operation: 2 directories - Program Files & Win, and netfx.msi.

    8. Now you can compress it to SFX (if compressed it will be just 12.2 MB, if left uncompressed it is 56.2 MB). And set it to silently extract.

    9. And install your newly created ".NET Framework v1.1 slip-streamed with SP1" package during XP/win2k setup with the "/QB" switch.

  2. can i use a method like this?

    runonceex (Window Post Install script: WPI)

    WshShell.regWrite(KeyBase + "\\75\\1", "cmd.exe /c %systemdrive%\install\\winamp5\\install.cmd", "REG_SZ");

    install.cmd

    start /wait %systemdrive%\install\winamp5\winamp505.msi INI="%systemdrive%\install\winamp5\winamp.ini" /qb
    EXIT

    winamp.ini

    [SETUP]
    XAUDIO=1
    Xmodernskin=1
    Xextra=1
    Xregopt=1
    XNAME=xxxx
    XKEY=xxxxx-xxxxx-xxxxx-xxxxx

  3. i use post-install wizard 1.2: http://www.msfn.org/board/index.php?showtopic=11491

    winnt.sif

    [GuiRunOnce]

    %systemdrive%\install\bootlogo.cmd

    %systemdrive%\install\prepare.cmd

    %systemdrive%\install\patch\installa.cmd

    %systemdrive%\install\wpi.cmd

    %systemdrive%\install\install.cmd

    %systemdrive%\cleanup.cmd

    i've also a folder called INSTALL in my cd root! and another INSTALL folder in $OEM$!!:

    CD DRIVE

    |

    |_$OEM$

    | |

    | |_install

    |

    |_install

    |_I386

    |_autorun.inf

    |_setup.exe

    |_win51ip

    |_etc...

    now,after the XP installation and all hotfix are installed,the system reboot and run GUIRUNONCE!

    bootlogo.cmd work propertly

    prepare.cmd work propertly

    installa.cmd work propertly

    then....wpi.cmd runs!!!!

    my wpi.cmd:

    start /wait %systemdrive%\install\WPI\WPI.HTA

    my cleanup.cmd:

    shutdown.exe -r -f -t 60 -c "Installazione completata. Windows XP si riavviera' tra 1 minuto..."REGEDIT /S %systemdrive%\install\wfpriabilita.regRD /S /Q %systemdrive%\install\EXIT

    when run WPI.CMD,the windows where i must chose the programs i want to install appear:

    post-70-1069967670.gif

    but at the same time CLEANUP.CMD runs!!!! and all the installations i have chose before.....stop!!! :)

    what's the problem?

    sorry for my english!

×
×
  • Create New...