Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Try the next code in a batch file: @echo off start /wait Dropbox_0.6.402.exe /S ping -n 02 127.0.0.1>nul taskkill /f /im Dropbox.exe exit
  2. I use ccleaner.exe /S and then copy ccleaner.ini in installation folder (one of the settings is "Save all settings to INI file").
  3. If I understand right, you need to use WinActivate function.
  4. Maybe you do something wrong, because my installer made with those instructions works perfect.
  5. The problem with supporting formats like this is that I can't add support for something unless I have sample files to work with, and it's difficult to find or create files that require proprietary applications to create. If someone can point me to some sample files (I typically require two separate samples of each format), then I'll be happy to look into adding support. I have uploaded samples for .daa (PowerISO) and .uif (MagicISO) formats: http://rapidshare.com/files/153690751/Sample1.daa http://rapidshare.com/files/153691199/Sample2.daa http://rapidshare.com/files/153690975/Sample1.uif http://rapidshare.com/files/153691431/Sample2.uif
  6. I have build a silent installer for Windows XP 64 bit that have 54.3 MB (337 MB uncompressed). Check these links for info: http://blogs.msdn.com/astebner/archive/200...16/6785921.aspx http://blogs.msdn.com/astebner/archive/200...20/6821804.aspx
  7. Yea, the unattended guide is a little bit outdated.
  8. For registration, backup the next keys after you have registered: [HKEY_LOCAL_MACHINE\SOFTWARE\ZabaraKatranemia Plc\xplorer2] "v1_Install"= "v1_regOK"= Also, you can add the next keys to disable notification and tips: [HKEY_CURRENT_USER\Software\ZabaraKatranemia Plc\xplorer2_UC.global] "bin1OffNotify"=dword:00000001 "nTipOfTheDay"=dword:00000000 Cmd file: @echo off start /wait xplorer2_setup_full.exe /S start /wait regedit /s settings.reg exit
  9. -silent -setDefaultBrowser switch for making Firefox default internet browser is no longer supported.
  10. Run the file and after first screen goto C:\Documents and Settings\Name\Local Settings\Temp\_is109 or something like this, copy WebPAS Outlook Add-in.msi from there and use it for that task.
  11. I use the .msi file (created in Temp folder after I started .exe).
  12. Settings are stored in registry [HKEY_CURRENT_USER\Software\Google\Picasa] [HKEY_LOCAL_MACHINE\SOFTWARE\Google\Picasa] Configure Picasa, export what you want from registry and run installation with a .cmd file: @echo off start /wait picasa3-setup.exe /S ping -n 02 127.0.0.1>nul taskkill /f /im Picasa3.exe start /wait regedit /s Settings.reg exit
  13. Well, it's working for me (tested in a clean VM).
  14. This one works: rundll32.exe advpack.dll,LaunchINFSection Install.inf
  15. The code provided in my previous post works fine. Register application and export those two registry keys. Copy hex strings in your batch file and remove commas. For example: [HKEY_LOCAL_MACHINE\SOFTWARE\Malwarebytes' Anti-Malware] "ID"=hex:ff,ff,ff,ff,ff "Key"=hex:ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff became: REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /f REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /f
  16. Seagate ST3320620AS
  17. Different programs -> different methods to register. In this case registration info is stored in a xml file. Generally, the serials can be imported via REG ADD command.
  18. For Malwarebytes' Anti-Malware 1.28: @echo off start /wait mbam-setup.exe /sp- /verysilent /norestart REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /f REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /f exit
  19. Try my script (read the instructions first): #cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.12.1 Author: myName IndigoRose AutoPlay Media Studio 7.1.1007 Application site: http://www.indigorose.com/autoplay-media-studio/ Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Instructions: ; 1.Run the original installer (.exe file). ; 2.After first screen goto your temp folder (usually: C:\Documents and Settings\Your Name\Local Settings\Temp), copy the ; .msi file located there and cancel the installation. ; 3.Load the .msi file in Microsoft Orca or other .msi editor, goto CustomAction table and Drop Row ; the next Actions: CustomValidateSerial and ExitIfNotValidSerial. ; 4.Save the file. ; Script Start - Add your code below here Opt("TrayIconDebug", 1) ; Installer file name $Installer = "ams70ev.msi" ; Serial $Serial = "AMS-XXXXX-XXXXX-XXXXX-XXXXX" ; Detect the Operating Sysytem type (32 bit or 64 bit) $OS = _OSBit() If $OS = 32 Then ; Installation folder $InstallLocation = @ProgramFilesDir & "\VMware\VMware Workstation" $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\{D7F8FF50-EEED-4F79-BE51-ADA945AA17ED}", "UninstallString") If ($PreviousInstallation) Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of AutoPlay Media Studio before using this script", 4) Exit EndIf ; Run the installer RunWait('msiexec.exe' & ' /i' & ' "' & @ScriptDir & '\' & $Installer & '"' & " /qb! /norestart") Sleep(2000) ; Create ams.xml file $file = FileOpen(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt", 9) FileWriteLine($file, '<CommonData>') FileWriteLine($file, '<Serial>' & $Serial & '</Serial>') FileWriteLine($file, '</CommonData>') FileClose($file) FileMove(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt", @AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.xml") If FileExists(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt") Then FileDelete(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt") EndIf EndIf If $OS = 64 Then ; Installation folder $InstallLocation = @HomeDrive & "\Program Files (x86)\VMware\VMware Workstation" $PreviousInstallation = RegRead("HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{D7F8FF50-EEED-4F79-BE51-ADA945AA17ED}", "UninstallString") If ($PreviousInstallation) Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of AutoPlay Media Studio before using this script", 4) Exit EndIf ; Run the installer RunWait('msiexec.exe' & ' /i' & ' "' & @ScriptDir & '\' & $Installer & '"' & " /qb! /norestart") Sleep(2000) ; Create ams.xml file $file = FileOpen(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt", 9) FileWriteLine($file, '<CommonData>') FileWriteLine($file, '<Serial>' & $Serial & '</Serial>') FileWriteLine($file, '</CommonData>') FileClose($file) FileMove(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt", @AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.xml") If FileExists(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt") Then FileDelete(@AppDataCommonDir & "\IndigoRose\AutoPlay Media Studio\7.0\ams.txt") EndIf EndIf Func _OSBit() Local $tOS = DllStructCreate("char[256]") Local $aGSWD = DllCall("Kernel32.dll", "int", "GetSystemWow64Directory", "ptr", DllStructGetPtr($tOS), "int", 256) If IsArray($aGSWD) And DllStructGetData($tOS, 1) Then Return 64 Return 32 EndFunc
  20. WinRAR addon maker
  21. Try a WinWait("Faber Toys", "") WinClose("Faber Toys", "") which works for me. But I recomend a repack with Inno Setup. Use the last innounp on the installer, open install_script.iss and delete the entire Run section first (except [Run] string), customize others settings (icons) bla bla and compile. Then you can run with /verysilent /norestart switches.
  22. Hi, I noticed that after I deleted all data stored from a partition except for $RECYCLE.BIN, Config.Msi, RECYCLER and System Volume Information folders which have 505 KB sum, in My Computer appears that I have stored 6.2 GB there (Total Size: 79.3 GB and Free Space: 73.1 GB). After formating that partition, Windows displays correct information about free space. For all the other partitions except primary partition (which was formated recently), Windows displays wrong informations about free space. I saw this on my previous HDD too.
×
×
  • Create New...