Jump to content

jfx_

Member
  • Posts

    17
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

Everything posted by jfx_

  1. Yep, but at the time the func is called it's only local defined Local $PETools = $AIK_Tools & "\PETools\" & $Arch _AikLang()
  2. @ChrisR There shouldn't be a problem with Make-PE3 under x64 OS. A minor thing for your _AikLang() func: $PETools is a local variable inside _Go_PE3() func, so all FileExists return failure. $PETools may should be set as global variable, thought.
  3. For making Icons with diffrent sizes i would suggest IcoFX And you don't need to hack shell32.dll it can be done through registry take a look here
  4. How about OS and Service Pack? The name of the audio device? Take a look in setuplog.log and setupapi.log inside your Windows folder, maybe it was logged what happen with your driver.
  5. There was an 120 Days trail edition of Xp x64 but it seems MS has removed it. Maybe you can get a trail version of Windows Server 2003 x64 (it use the same system like the xp version) http://technet.microsoft.com/en-us/windows...r/bb430831.aspx
  6. 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. 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.
  7. I this case a Live CD is not a good choice. Guess you have to install Windows XP x64.
  8. Yes, you can set this in the [Display] section of winnt.sif. Take a look here http://unattended.msfn.org/unattended.xp/view/web/19/
  9. Hy Martin, Try this http://www.msfn.org/board/index.php?showtopic=133043 it should work fine via SVCPACK method.
  10. 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.
  11. 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?
  12. 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
  13. As you create a silent SVCPACK installer I thought you would know what a batch file is. (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
  14. 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
  15. 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
  16. I just want to let you know, there is a very promising UAC solution for XP and also Vista called SuRun! Take a look at the discussion on Wilders Security Forums: http://www.wilderssecurity.com/showthread.php?t=227600
  17. You maybe need this in your winnt.sif [unattended] OemPreinstall=Yes
×
×
  • Create New...