Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. You can use $OEM$ folder. Read here. But I would choose to build an addon using inf file.
  2. You can use an add-on to apply your registry tweaks from RunOnce. I switched to this method, after I saw that some of my tweaks were not applied from RunOnce using nLite.
  3. Probably the only option is to monitor installation with Scalable WinINSTALL LE.
  4. Run the setup and at first screen go to your temp folder and copy from there the .msi file. Cancel the setup and load that .msi file in Microsoft Orca. In CustomAction table drop row the entry called CheckLicense. Save the file and extract it with UE.
  5. I tried the last file from that page - the one which is Drv2.1.0.4. Run the installer, and at first window go to %temp% and look for a folder called Disk1. Your files is inside it.
  6. No, the installer is not password protected. You need to provide a name and serial number or a path to a valid license file (*.bof) to install the product.
  7. %TEMP% or C:\Documents and Settings\User Name\Local Settings\Temp
  8. Try this msi package.
  9. Solution is to leave CS4 extracted on your DVD otherwise even if extraction starts first and WPI continue in the same time to install other apps, the whole process will be slow. Probably you have other applications with large size and heavy compressed (like Nero).
  10. File is microsoft cab sfx. I don't know if support silent install parameters.
  11. A good place to start: AppDeploy.com
  12. The file comes with exe extension. Use 7-Zip or other program to extract and use jsredist.msi for silent installation. msiexec /i jsredist.msi /qb! /norestart or msiexec /i jsredist.msi /qn /norestart (without progress bar).
  13. License is stored in #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.0.0 Author: myName Raxco PerfectDisk Professional 10 Build 100 x86 & x64 Application site: [url="http://www.raxco.com/"]http://www.raxco.com/[/url] Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Opt("TrayIconDebug", 1) ; Installation folder $InstallLocation = @ProgramFilesDir & "\Raxco\PerfectDisk2008\" ; License key hash $LicenseKey = "0xffffffffffffffffffffffffffffffff" ; Create Desktop icon $DesktopIcon = 1 $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\{7B738CD9-D107-48C7-8E65-2E6639A39C8D}", "InstallLocation") If FileExists($PreviousInstallation & "\PerfectDisk.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of PerfectDisk before using this script", 4) Exit EndIf If @OSArch = "X86" Then ; Installer file name $Installer = "PerfectDisk_x86.msi" ; Run the installer If $DesktopIcon = 0 Then RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x86\" & $Installer & '"' & " /qb! /norestart") ElseIf $DesktopIcon = 1 Then RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x86\" & $Installer & '"' & " /qb! /norestart INSTALL_DESKTOP_ICON=1") EndIf Sleep(2000) ; Settings RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0", "ShowSplashScreen", "REG_DWORD", 0) RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0\Preferences", "Exit On Close", "REG_SZ", "true") RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowExternalHardDrives", "REG_DWORD", 1) RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowFlashDrives", "REG_DWORD", 1) RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "EnableDebug", "REG_DWORD", 0) RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", $LicenseKey) RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "LogSettings", "REG_BINARY", "0x0f00000001000000020000000000020000000000") RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "PDManageLayoutIni", "REG_DWORD", 2) RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", 15) RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0\AutoUpdSettings", "Auto_Check", "REG_SZ", "No") RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDAgent", "Start", "REG_DWORD", 3) RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDEngine", "Start", "REG_DWORD", 3) RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDAgent", "Start", "REG_DWORD", 3) RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDEngine", "Start", "REG_DWORD", 3) EndIf If @OSArch = "X64" Then ; Installer file name $Installer = "PerfectDisk_x64.msi" ; Run the installer If $DesktopIcon = 0 Then RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x64\" & $Installer & '"' & " /qb! /norestart") ElseIf $DesktopIcon = 1 Then RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x64\" & $Installer & '"' & " /qb! /norestart INSTALL_DESKTOP_ICON=1") EndIf Sleep(2000) ; Settings RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0", "ShowSplashScreen", "REG_DWORD", 0) RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0\Preferences", "Exit On Close", "REG_SZ", "true") RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowExternalHardDrives", "REG_DWORD", 1) RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowFlashDrives", "REG_DWORD", 1) RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "EnableDebug", "REG_DWORD", 0) RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", $LicenseKey) RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "LogSettings", "REG_BINARY", "0x0f00000001000000020000000000020000000000") RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "PDManageLayoutIni", "REG_DWORD", 2) RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", 15) RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0\AutoUpdSettings", "Auto_Check", "REG_SZ", "No") RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDAgent", "Start", "REG_DWORD", 3) RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDEngine", "Start", "REG_DWORD", 3) RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDAgent", "Start", "REG_DWORD", 3) RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDEngine", "Start", "REG_DWORD", 3) EndIf Func OnAutoItStart() ; One script instance only If WinExists(@ScriptName & '_Interpreter') Then Exit AutoItWinSetTitle(@ScriptName & '_Interpreter') EndFunc Installation process will made a nice progress bar
  14. Sometimes M$ hotfixes left behind them some folders (in E:\ partition, from autoextraction) which can not be deleted (even if I install a new Windows or restore from Ghost). I tested Unlocker on those folders and failed, but PowerPrompt do the job with his system credentials.
  15. Probably he want to build a sfx archive and run compiled file after extraction.
  16. .NET AIO x86: http://www.ryanvm.net/forum/viewtopic.php?t=5657 DirectX Runtimes: http://www.ryanvm.net/forum/viewtopic.php?t=6509 or http://win.code65536.com/
  17. REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\MSRipCDAudioOnArrival\" /f REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\NeroAutoPlay2RipCD" /f
  18. A good option to delete such folders is PowerPrompt from here: http://grubletrang.com/Software.aspx?app=PowerPrompt
  19. http://www.appdeploy.com/tips/browse.asp?c...ry=Distribution http://unattended.sourceforge.net/installers.php
  20. Registration information is located here: [HKEY_CURRENT_USER\Software\Xilisoft\<<converter spam>>\RegInfo] Add them after the last line using regwrite.
  21. If the sfx extract the installer on the hdd and start installation from there works? ;!@Install@!UTF-8! InstallPath="%temp%\\RHD" RunProgram="setup.exe /s /SMS" Delete="%temp%\\RHD" GUIMode="2" ;!@InstallEnd@!
  22. Search in the temp folder. Something like this: C:\Documents and Settings\Your Name\Local Settings\Temp\7543807\ymsgr_inst_us.exe
×
×
  • Create New...