Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Klite packs supports -makeunattended switch to made a custom installer. There is a section with file type assoc. for Media Player Classic or Windows Media Player. Check or uncheck what you want and build the installer.
  2. msi file was edited with Installshield and changed the name from Add or Remove Programs.
  3. Try to use 7zS.sfx file just once. After you build an installer delete the 7zs.sfx file which you used. When you want to build another installer use a fresh copy of that file (keep a clean copy of the file somewhere on your HDD). Edit: Try 7zSD.sfx (1.2 Build 861) module from here: http://www.msfn.org/board/index.php?showtopic=101552 Is powerfull than the original.
  4. http://www.appdeploy.com/tips/detail.asp?id=18
  5. http://www.msfn.org/board/Windows-Post-Ins...rd-WPI-f93.html This is based on RunOnceEx.
  6. This is for Adobe Photoshop CS3 Extended. - Install and activate over phone - Copy the extracted content of installer into a folder - Delete all text from Requires to Requires (including both Requires) from .\payloads\AdobePhotoshop10en_US\AdobePhotoshop10en_US.proxy.xml - Delete unnecessary folders from payloads - Snapshot the system before and after installing updates (use WinINSTALL LE 2003) and build the installer (you need some skills to use Microsoft Orca, for editing msi installer after). But this step is not necessary. For silent install and activation I used the next AutoIt script: Opt("TrayIconDebug", 1) Opt("SendKeyDelay", 200) ; Executable file name $EXECUTABLE = "Setup.exe" ; Serial numbers $SN1 = "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" $SN2 = "YYYY-YYYY-YYYY-YYYY-YYYY-YYYY" ; Installation folder $INSTALLLOCATION = @ProgramFilesDir & "\Adobe" If FileExists($INSTALLLOCATION & "\Adobe Photoshop CS3\Photoshop.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Adobe Photoshop before using this script", 4) Exit EndIf ; Run the installer Run($EXECUTABLE) ; License Agreement WinWait("Adobe Photoshop CS3 Installer: License Agreement", "") WinActivate("Adobe Photoshop CS3 Installer: License Agreement", "") Send("{TAB 2}") Send("{ENTER}") ; Options WinWait("Adobe Photoshop CS3 Installer: Options", "") WinActivate("Adobe Photoshop CS3 Installer: Options", "") Send("{TAB 3}") Send("{ENTER}") ; Options WinWait("Adobe Photoshop CS3 Installer: Installation Location", "") WinActivate("Adobe Photoshop CS3 Installer: Installation Location", "") Send("{TAB 3}") Send("{ENTER}") ; Summary WinWait("Adobe Photoshop CS3 Installer: Summary", "") WinActivate("Adobe Photoshop CS3 Installer: Summary", "") Send("{TAB 3}") Send("{ENTER}") ; Done WinWait("Adobe Photoshop CS3 Installer: Done", "") WinActivate("Adobe Photoshop CS3 Installer: Done", "") Send("{TAB}") Send("{ENTER}") Sleep(2000) ; Run Adobe Photoshop CS3 Extended Run($INSTALLLOCATION & "\Adobe Photoshop CS3\Photoshop.exe") ; Software Setup WinWait("Adobe Photoshop CS3 : Setup", "Software Setup") ; Remove "-" from the first serial number $SERIALNUMBER1 = StringReplace($SN1, "-", "") $COD1 = StringMid($SERIALNUMBER1, 1, 4) $COD2 = StringMid($SERIALNUMBER1, 5, 4) $COD3 = StringMid($SERIALNUMBER1, 9, 4) $COD4 = StringMid($SERIALNUMBER1, 13, 4) $COD5 = StringMid($SERIALNUMBER1, 17, 4) $COD6 = StringMid($SERIALNUMBER1, 21, 4) ; Write the first serial number into Adobe Photoshop CS3 Extended activation window WinActivate("Adobe Photoshop CS3 : Setup", "Software Setup") ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit1", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit1", $COD1) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit2", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit2", $COD2) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit3", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit3", $COD3) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit4", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit4", $COD4) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit5", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit5", $COD5) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit6", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 : Setup", "", "Edit6", $COD6) ControlClick("Adobe Photoshop CS3 : Setup", "", "Button8") ; Activate WinWait("Adobe Photoshop CS3 Extended : Activate Now", "Activate") WinActivate("Adobe Photoshop CS3 Extended : Activate Now", "Activate") Send("{ENTER}") ; Activation - No Connection WinWait("Adobe Photoshop CS3 Extended : Activation Problem", "Activation - No Connection") WinActivate("Adobe Photoshop CS3 Extended : Activation Problem", "Activation - No Connection") ControlCommand("Adobe Photoshop CS3 Extended : Activation Problem", "", "Button20", "Check", "") ControlClick("Adobe Photoshop CS3 Extended : Activation Problem", "", "Button23") ; Phone Activation WinWait("Adobe Photoshop CS3 Extended : Phone Options", "Phone Activation") WinActivate("Adobe Photoshop CS3 Extended : Phone Options", "Phone Activation") ; Remove "-" from the second serial number $SERIALNUMBER2 = StringReplace($SN2, "-", "") $COD7 = StringMid($SERIALNUMBER2, 1, 4) $COD8 = StringMid($SERIALNUMBER2, 5, 4) $COD9 = StringMid($SERIALNUMBER2, 9, 4) $COD10 = StringMid($SERIALNUMBER2, 13, 4) $COD11 = StringMid($SERIALNUMBER2, 17, 4) $COD12 = StringMid($SERIALNUMBER2, 21, 4) ; Write the second serial number into Adobe Photoshop CS3 Extended activation window WinActivate("Adobe Photoshop CS3 Extended : Phone Options", "Phone Activation") ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit7", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit7", $COD7) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit8", "" ) Sleep(500) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit8", $COD8) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit9", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit9", $COD9) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit10", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit10", $COD10) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit11", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit11", $COD11) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit12", "") Sleep(500) ControlSetText("Adobe Photoshop CS3 Extended : Phone Options", "", "Edit12", $COD12) ControlClick("Adobe Photoshop CS3 Extended : Phone Options", "", "Button37") ; Activation Complete WinWait("Adobe Photoshop CS3 Extended : Activated", "Activation Complete") WinActivate("Adobe Photoshop CS3 Extended : Activated", "Activation Complete") ControlClick("Adobe Photoshop CS3 Extended : Activated", "", "Button13") Sleep(1000) ; Close Adobe Photoshop CS3 Extended process $PID = ProcessExists("Photoshop.exe") If $PID Then ProcessClose($PID) EndIf ; Block mDNSResponder.exe (Bonjour) service to run at Windows startup RegWrite("HKLM\SYSTEM\ControlSet001\Services\Bonjour Service", "Start", "REG_DWORD", "4") Probable your serials will work only in a machine with the same hardware like that you have on activation.
  7. Working link: http://cdn.simtel.net/pub/simtelnet/win95/...ininstallle.exe
  8. You can try, but the activation code is based on the hardware config. Or maybe not?
  9. Script updated for version 7.0.1.4 http://www.msfn.org/board/index.php?s=&amp...st&p=704603 Oh... and happy new year to all MSFN members!
  10. Try the search button. It works nice.
  11. Check my silent installer http://rapidshare.com/files/79665444/YPOPs_0.9.5.1_.rar
  12. This is for ACDSee Photo Manager 10.0.238 Run your installer with switch /a Then in the new folder create by admin installation (with .msi file), copy the compiled exe of the next autoit script (edit with your serial number and check that the name of executable file is the same): Opt("TrayIconDebug", 1) Opt("SendKeyDelay", 200) ; Executable file name $EXECUTABLE = "ACDSee 10 Photo Manager.msi" ; Installation folder $INSTALLLOCATION = @ProgramFilesDir & "\ACD Systems\" ; Serial number $SN = "XXXXXX-XXXXX-XXXXXX-XXXXXXX" If FileExists($INSTALLLOCATION & "\ACDSee\10.0\ACDSee10.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of ACDSee Photo Manager before using this script", 4) Exit EndIf ; Run the installer ShellExecuteWait($EXECUTABLE, "PIDKEY=" & $SN & " LICENSE_MODEL=Full YAHOO_TOOLBAR_INSTALL=0 ALLOW_PRIVATE_FOLDERS=0 DISABLE_SOFTWARE_UPDATE=1 ALLUSERS=1 /qb! /norestart") ; Close ACDSee Device Detector process ProcessWait("DevDetect.exe") $PID = ProcessExists("DevDetect.exe") If $PID Then ProcessClose($PID) ; Prevent ACDSee Device Detector to run at Windows startup RegDelete("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "Device Detector") Build the silent installer and place it in svcpack folder.
  13. looks like i am out of ideas? Install and activate over the phone. Copy those serials somewhere. Uninstall. Reinstall and make an autoit script to activate over the phone with serials from the first installation (those serials will work only on your machine!).
  14. Only this key and value data it matters. HKCR\HTTP\shell\open\command\ Cheers.
  15. Thanks for the tip. I used the "hard" way.
  16. AutoIt only: http://www.winaddons.com/hamachi-1025/ Extract cab file and look in svcpack folder.
  17. Sorry man it seems that you are luckless For me it works with both installers I uploaded for you.
  18. What switch? That is switchless silent installer.
  19. For me it works fine. I uploaded a version which kills the process started after installation. http://rapidshare.com/files/78292978/DAMN_...0.0032_RC_3.rar
  20. It ask you but, that window is closed by the script. If it ask you later when you start from the first time **** Nfo Viewer this is not a problem.
  21. Now I remember that I extracted PowerDVD.msi with Universal Extractor because msiexec /a don't work.
  22. Check this: http://www.adobe.com/support/deployment/cs3_deployment.pdf
  23. That code is AutoIt. You need to install AutoIt http://www.autoitscript.com/cgi-bin/getfil...it-v3-setup.exe Save those codes in files with extension au3 (Ashampoo_Burning_Studio_7.21.au3 and Ashampoo_Magical_Snap_2.30.au3). Now edit those files (r. click and Edit). Just read that script and edit these variables from the top of the script: ($EXECUTABLE, $SN for burning Studio) and ($EXECUTABLE, $LangID, $SkinName, $SN for Magical Snap). In fact just serial number is required ($SN) and verify that the name of executable file is the same with yours. Compile the script and place the compiled file in the same folder with the installer. Build your new silent installers with 7zsd.sfx or WinRAR and set the compiled file to be executed after extraction. Then place new installers in svcpack folder. In entries.ini just input the name of the installer with no switches, like this: [general] builddate=2007/05/06 description=Ashampoo Magical Snap language=English title=Ashampoo Magical Snap version=2.30 website=http://www.ashampoo.com/ [EditFile] SVCPACK.INF,SetupHotfixesToRun,AddProgram [AddProgram] Ashampoo_Magical_Snap_2.30.exe
  24. start /wait DAMN_NFO_Viewer_2.10.0032_RC_3.exe From RunOnce is like other entries, but no switches.
  25. Extract file from rar archive and execute.
×
×
  • Create New...