Jump to content

jfx_

Member
  • Posts

    17
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

Posts posted by jfx_

  1. Well I mean it would take months to get such a LiveCD Build.

    Probly most of the software your want to test is x86 Software, I think. That means this LiveCd have to fully support WOW32. :unsure:

    Also often it is not so easy to get some software/drivers in XP based LiveCD to work. So such a LiveCD is not the best thing to check if erverything would work fine.

  2. I highly recommand to slipstream SP3 before integrate something.

    The hp compaq c702tu needs the Microsoft UAA Bus Driver, which isn't part of XP SP2, then you need a hotfix.

    kb888111 - Microsoft UAA Bus Driver for High Definition Audio

    If you upgrade your installation it's already a part of SP3.

    Are you integrating drivers for your PC or even more? I personally would avoid integrating to much drivers in a windows source.

    Like g-force above-mentioned "Last Session.ini" which nlite creates would help use to trace your problems.

  3. Well, you need to give us even more input.

    Information of your hardware?

    Which OS is it? XP (Service Pack?, 32Bit or as I see in your Profile 64Bit?)

    In which order do you use Driverpack-Base and nLite?

  4. Oh, what have you done? Maybe I've to get my hands dirty.

    Here is a Installer for .NET Framework 2.0 SP2, running on SVCPACK Stage, RunOnceEx or normal Windows without problem.

    Ready to use just copy to SVCPACK Folder and add it to SVCPACK.inf under [setupHotfixesToRun].

    Just a thing I assume you have XP SP3, then nothing to care about. But if you have SP2 or older you have to prior integrate Windows Installer 3.1 or later.

    http://www.mediafire.com/?sharekey=990741c...04e75f6e8ebb871

  5. As you create a silent SVCPACK installer I thought you would know what a batch file is. :huh: (save the text as *.bat or *.cmd)

    This allow and force a Windows Installer Package to installed

    reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "0" /f
    reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f
    reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f
    reg delete "HKLM\Software\Microsoft\PCHealth\ErrorReporting\DW" /f

    This is where the normal setup of NET Framework start

    change setup.exe to dotnetfx.exe /q:a /c:"install.exe /q" or how ever you start the .net setup

    rem Now your the .msi-based setup can run

    setup.exe

    rem clean up, please do this not if Windows is already installed

    If Setup is finished these Settings should changed back to normal

    reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "1" /f
    reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f
    reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

    you can pack the files with winrar and let Winrar start the the Batchfile

  6. there are same registry keys that must be changed:

    reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "0" /f

    reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f

    reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "1" /f

    reg delete "HKLM\Software\Microsoft\PCHealth\ErrorReporting\DW" /f

    rem Now your the .msi-based setup can run

    setup.exe

    rem clean up, please do this not if Windows is already installed

    reg add "HKLM\SYSTEM\Setup" /v "SystemSetupInProgress" /d "1" /f

    reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

    reg add "HKCU\Software\Policies\Microsoft\Windows\Installer" /v "DisableRollback" /d "0" /f

  7. Just copy MicrosoftUpdateCatalogWebControl.dll to your %SystemRoot%\system32 folder and use regsvr32 MicrosoftUpdateCatalogWebControl.dll in a cmd window

    here the original inf:

    ;
    ; Inf file for MicrosoftUpdateCatalogWebControl.dll ActiveX control
    ;

    [version]
    Signature=$Windows NT$

    [Add.Code]
    MicrosoftUpdateCatalogWebControl.dll=MicrosoftUpdateCatalogWebControl.dll

    [MicrosoftUpdateCatalogWebControl.dll]
    file=thiscab
    RegisterServer=yes
    clsid={5AE58FCF-6F6A-49B2-B064-02492C66E3F4}
    ; DestDir is system32
    DestDir=11
    FileVersion=7,0,6000,569

×
×
  • Create New...