Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Download the msi installer(s) from my previous post and run installation with /qn /norestart parameters.
  2. Off topic: Creatura you are a surgeon?
  3. I use AutoIt to install this flash player activex: #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.6.0 Author: myName Adobe Flash Player Plug-in ActiveX 10.0.45.2 Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here #include <Misc.au3> If _Singleton("Adobe Flash Player Plug-in ActiveX 10.0.45.2",1) = 0 Then Exit EndIf Opt("TrayIconDebug", 1) ; Installer file name $Installer = "FlashPlayerUpdate.exe" If @OSArch = "X86" Then $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX", "UninstallString") If FileExists($PreviousInstallation) Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Adobe Flash Player Plug-in ActiveX before using this script", 4) Exit EndIf EndIf If @OSArch = "X64" Then $PreviousInstallation = RegRead("HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX", "UninstallString") If FileExists($PreviousInstallation) Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Adobe Flash Player Plug-in ActiveX before using this script", 4) Exit EndIf EndIf ; Run the installer Run($Installer) ; Close FlashUtil10e.exe process ProcessWait("FlashUtil10e.exe") Sleep(1000) RunWait(@COMSPEC & " /c taskkill /f /im FlashUtil10e.exe", "", @SW_HIDE)
  4. Ashampoo Burning Studio 9.21 Ashampoo_Burning_Studio_9.21.au3
  5. I have changed the script to work with their latest installer for v9.21. Here Enjoy.
  6. REG ADD "HKCU\Software\antiufo\Songr" /v "CheckForUpdates" /t REG_DWORD /d "0" /f This will disable automatic updates. If is not good for you, try a disassembler.
  7. Doesn't matter. gfhdfghdfh is good also.
  8. _Singleton is a function which prevent to run multiple instance of the same script or compiled script (this mean that you can double click as many times you want on the file, only one instance will run). AdlibEnable and AdlibDisable is deprecated. Download the last stable version and read the changelog.
  9. REG ADD "HKLM\SOFTWARE\RapidSolution\Radiotracker_2009\License" /v "License" /t REG_SZ /d "your key" /f Replace your key with your key. I repeat this was tested in windows xp sp3 clean virtual machine.
  10. It's an annoying installer. Not working to install from msi file. I tried to install and failed on program launch. I have installed in a clean vm with windows xp sp3, from ice.exe attended, then apply the serial using add reg command from my previous post and restart. Working, but poor consolation.
  11. Silent installation with desktop icon: /sp- /verysilent /MERGETASKS="desktop_icon" /norestart Silent installation with quicklaunch icon: /sp- /verysilent /MERGETASKS="quicklaunch_icon" /norestart Silent installation with desktop and quicklaunch icon: /sp- /verysilent /MERGETASKS="desktop_icon,quicklaunch_icon" /norestart
  12. Try this: @echo off RadiotrackerSetup-6.1.2053.3300.msi /qn /norestart ping -n 03 127.0.0.1>nul REG ADD "HKLM\SOFTWARE\RapidSolution\Radiotracker_2009\License" /v "License" /t REG_SZ /d "your key" /f exit
  13. Installer is rar sfx archive. Extract files using 7-zip or other and start installation from RadiotrackerSetup-6.1.2053.3300.msi, using the usual switches: /qb! /norestart or/qn /norestart
  14. Try this script with the latest stable AutoIt release: #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.0.0 Author: myName Ashampoo Burning Studio 9.21 Application site: http://www2.ashampoo.com/webcache/html/1/product_2_2210___USD.htm Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here #include <Misc.au3> If _Singleton("Ashampoo Burning Studio 9.21",1) = 0 Then Exit EndIf Opt("TrayIconDebug", 1) ; Installer file name $Installer = "ashampoo_burning_studio_9_9.21_sm.exe" ; Disable InfoChannel $DisableInfoChannel = 1 ; Serial number $SN = "" $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Ashampoo Burning Studio 9_is1", "InstallLocation") If StringRight($PreviousInstallation, 1) = '\' Then $PreviousInstallation = StringTrimRight($PreviousInstallation, 1) EndIf If FileExists($PreviousInstallation & "\burningstudio9.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Ashampoo Burning Studio before using this script", 4) Exit EndIf ; Save and disable the default internet browser (to prevent Ashampoo Burning Studio installer to open it at the end of installation) $DefaultHttpBrowser = RegRead("HKCR\http\shell\open\command\", "") $DefaultHttpsBrowser = RegRead("HKCR\https\shell\open\command\", "") RegDelete("HKCR\http\shell\open\command\", "") RegDelete("HKCR\https\shell\open\command\", "") ; Start checking AdlibRegister("_Adlib") ; Run the installer RunWait($Installer & " /sp- /verysilent /norestart") Sleep(2000) ; Disable InfoChannel If $DisableInfoChannel = 1 Then RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 9\ash_inet", "InfoChannel_-updates-_Enabled", "REG_DWORD", 0) RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 9\ash_inet", "InfoChannel_ashnews_Enabled", "REG_DWORD", 0) RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 9\General", "FirstStart", "REG_DWORD", 0) EndIf ; Registration RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9", "RegKey", "REG_SZ", $SN) ; Restore the default internet browser RegWrite("HKCR\http\shell\open\command\", "", "REG_SZ", $DefaultHttpBrowser) RegWrite("HKCR\https\shell\open\command\", "", "REG_SZ", $DefaultHttpsBrowser) ; Stop checking AdlibUnRegister("_Adlib") Func _Adlib() ; Close MyAshampoo Toolbar for Mozilla Firefox installation process $PID = ProcessExists("MyAshampoo.exe") If $PID Then ProcessClose($PID) EndIf ; Close Ashampoo Burning Studio process $PID = ProcessExists("burningstudio9.exe") If $PID Then ProcessClose($PID) EndIf ; Close Internet Explorer process if was started $PID = ProcessExists("IEXPLORE.EXE") If $PID Then ProcessClose($PID) EndIf ; Close Mozilla Firefox process if was started $PID = ProcessExists("firefox.exe") If $PID Then ProcessClose($PID) EndIf ; Close Opera process if was started $PID = ProcessExists("opera.exe") If $PID Then ProcessClose($PID) EndIf EndFunc Edit
  15. You have an unnecessary quote after True. If you use sfx maker paste /s TARGETDIR="%programfiles%\Stardock\Object Desktop\IconPackager" ALLUSERS=True
  16. You need version with spanish lang pack. After you start installation, go to temp folder and copy from there two files one msi and another one TUM51.tmp. Copy those two files in a folder and make another copy for TUM51.tmp. Rename TUM51.tmp to TUM51.msi. Close installation. Add a cmd file nearby those three files: @echo off msiexec /i 2a136c.msi /qb! /norestart msiexec /i TUM51.msi /qb! /norestart exit Of course you can add commands to delete desktop icons or add serial, tweaks.
  17. Try this: IconPackager5_public.exe /s TARGETDIR="%programfiles%\Stardock\Object Desktop\IconPackager" ALLUSERS=True
  18. For create icons in desktop or other folders read here. An example: [Version] Signature="$Windows NT$" [DefaultInstall] ProfileItems=1IconItemAdd ProfileItems=2IconItemAdd ProfileItems=3IconItemAdd [1IconItemAdd] ; All Users Start Menu icon Name = "EULA", 0x0000008, 16407 CmdLine = 16422,"Yahoo!\Widgets","EULA.rtf" SubDir = "Yahoo! Widgets" WorkingDir = 16422,"Yahoo!\Widgets" [2IconItemAdd] ; All Users Start Menu icon Name = "Yahoo! Widgets", 0x0000008, 16407 CmdLine = 16422,"Yahoo!\Widgets","YahooWidgets.exe" SubDir = "Yahoo! Widgets" WorkingDir = 16422,"Yahoo!\Widgets" [3IconItemAdd] ; All Users Desktop icon Name = "Yahoo! Widgets", 0x0000008, 16409 CmdLine = 16422,"Yahoo!\Widgets","YahooWidgets.exe" WorkingDir = 16422,"Yahoo!\Widgets"
  19. You don't need the update (the last version available for download is 3.0.1.160).
  20. Weird. What happens if you unplug the mouse from pc?
  21. Run the installer with /r switch. Complete installation, go to %systemroot% and copy setup.iss file in the same folder with installer. Next time run the installer with /s /SMS switch for silent installation. A reboot is required after installation.
×
×
  • Create New...