Content Type
Profiles
Forums
Events
Everything posted by radix
-
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
-
CCleaner newest version has new builds available
radix replied to ajua's topic in Application Installs
I use ccleaner.exe /S and then copy ccleaner.ini in installation folder (one of the settings is "Save all settings to INI file"). -
[Tool] QuickLaunch during Windows Setup 0.2.0 (multilingual)
radix replied to kal's topic in Unattended Windows 2000/XP/2003
Try here -
How to create shortcut into Control Panel ?
radix replied to thaiadvance's topic in Unattended Windows 2000/XP/2003
Read here -
If I understand right, you need to use WinActivate function.
-
Maybe you do something wrong, because my installer made with those instructions works perfect.
-
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
-
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
-
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
-
How can I integrate the registration into the Perfect Disk install?
radix replied to DungFu's topic in Application Installs
Read here -
-silent -setDefaultBrowser switch for making Firefox default internet browser is no longer supported.
-
This is one goofy InstallShield installer...
radix replied to robotnik's topic in Application Installs
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. -
[Release] TechSmith SnagIt v8.2.3 and v9.0.2
radix replied to johndoe74's topic in Application Add-Ons
I use the .msi file (created in Temp folder after I started .exe). -
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
-
Well, it's working for me (tested in a clean VM).
-
This one works: rundll32.exe advpack.dll,LaunchINFSection Install.inf
-
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
-
Seagate ST3320620AS
-
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.
-
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
-
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
-
AutoIt: How to shut a classic explorer window during setup?
radix replied to Dislocated Time's topic in Application Installs
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. -
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.