Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Yahoo Messenger 10 can't be install from T13. Try to install from RunOnceEx or RunOnce.
  2. Sorry I thought that the popup appear on installation process and in this case you can use my script or download the latest installer available on divx.com.
  3. Add the next lines to your script, or download a new installer: ; Kill the update window pop-up (delete divx-bundle-updater.ini) #Include <File.au3> #Include <Array.au3> $FileList = _FileListToArray(@TempDir, "ns*.tmp", 0) If IsArray($FileList) Then For $i = 1 to $FileList[0] $Path = @TempDir & "\" & $FileList[$i] & "\divx-bundle-updater.ini" FileDelete($Path) Next EndIf
  4. Sfx work fine, but I think that in the program when we choose the path of the file to run after decompression, will be better to point to the directory choosed in the first step instead of the directory where is located SFXMaker.exe. I downloaded the zip archive, not the installer.
  5. Hi, Just I discovered these: - When we choose the path of the file to run after decompression, the program did not point to the directory choosed on the first step. - File version can not be changed (it's always 4.65.0.0); - Program version from About tab -> About is 1.2 RC2 instead of 1.2 or 1.2 final; - About the installer made with Inno Setup: on Select Start Menu window, in the field is written (Default) (I think SFXMaker is be better).
  6. Here is an AutoIt script for DFX for Windows Media Player v9.210 (32 bit): #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.0.0 Author: myName DFX for Windows Media Player v9.210 (32 bit) Application site: [url="http://www.fxsound.com/"]http://www.fxsound.com/[/url] Download link: [url="http://www.fxsound.com/dfx/pages/forms/download_ask_email.php?vendor=15&subvendor=0&plus=0&refer=0"]http://www.fxsound.com/dfx/pages/forms/dow...s=0&refer=0[/url] Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Opt("TrayIconDebug", 1) ; Installer file name $Installer = "Windows Media Player (x86).exe" $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\DFX for Windows Media Player", "InstallLocation") If FileExists($PreviousInstallation & "\uninstall_WMP.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of DFX for Windows Media Player before using this script", 4) Exit EndIf ; Start checking AdlibEnable('_Adlib') ; Run the installer Run($Installer & " /S") ProcessWaitClose($Installer) ; Stop checking AdlibDisable() ; Clean-up the Temp folder FileDelete(@TempDir & "\NEW*.tmp") FileDelete(@TempDir & "\NEW*.exe") #Include #Include $FileList = _FileListToArray(@TempDir, "ns*.tmp", 2) If IsArray($FileList) Then For $i = 1 to $FileList[0] $Path = @TempDir & "\" & $FileList[$i] DirRemove($Path, 1) Next EndIf ; Install skins (copy executable files into a folder called Skins, nearby the compiled AutoIt script file) $FileList = _FileListToArray(@ScriptDir & "\Skins", "*.exe", 1) If IsArray($FileList) Then For $i = 1 to $FileList[0] $Path = @ScriptDir & "\Skins" & "\" & $FileList[$i] RunWait($Path & " /S") Next EndIf Func _Adlib() ; Close ask_toolbar_bundled.exe process $PID = ProcessExists("ask_toolbar_bundled.exe") If $PID Then ProcessClose($PID) EndIf ; Close AskInstallChecker.exe process $PID = ProcessExists("AskInstallChecker.exe") If $PID Then ProcessClose($PID) EndIf EndFunc Func OnAutoItStart() ; One script instance only If WinExists(@ScriptName & '_Interpreter') Then Exit AutoItWinSetTitle(@ScriptName & '_Interpreter') EndFunc Deal with Ask Toolbar and can install skins silently if you copy executable files in a folder called Skins, in the same folder with compiled script.
  7. Read here and here. Works for me (installed only Nero Burning Rom).
  8. Extract cab sfx from Microsoft, using internal switches: Usage: /extract:path, extracts the content of the package to the path folder /log[:path to log file], enables verbose logging for the update installation /lang:lcid, sets the user interface to the specified locale when multiple locales are available within the package /quiet, runs the package in silent mode /passive, runs the update without any interaction from the user /norestart, prevents prompting of user when reboot of machine is needed /forcerestart, forced restart of machine once update is complete /?, shows this help message and not 7-Zip. Tested with Office 2010 Pro Plus Beta availlable for download from Microsoft site and with some Office 2007 updates. Other cab sfx types can be extracted with 7-Zip or using internal switches: Command line options: /Q -- Quiet modes for package, /T:<full path> -- Specifies temporary working folder, /C -- Extract files only to the folder when used also with /T. /C:<Cmd> -- Override Install Command defined by author.
  9. Is possible to import registry entries from a hive file, using a vbs script or something else? I need to import a registry value, but can't work from a reg file (it has a structure like a xml file). Edit: Done with REG RESTORE command. Too easy
  10. And another one: support for extracting zip sfx archive (only WinZip can extract this type).
  11. First, run the installer with /r switch. Configure on the end for desktop icon and filetype assoc. Go to Windows folder and grab from there the file called setup.iss. Copy that file in the same folder with installer and a .cmd file with this content: @echo off start /wait upix3_tbyb_e-KEYPIX3ENPC.exe /s /SMS ping -n 03 127.0.0.1>nul taskkill /f /im Monitor.exe reg add "HKCU\Software\Ulead Systems\Ulead AutoDetector\2.0\Setting" /f /v "Enable" /t REG_DWORD /d 0 reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /f /v "Ulead AutoDetector v2" reg add "HKCU\Software\Ulead Systems\Ulead PhotoImpact\13.0\WorkSpaceMode" /f /v "DisplayWelcomeScreen" /t REG_DWORD /d 0 exit Run silent installation from .cmd file. Note: Those registry entries disable Ulead AutoDetector to run on Windows startup and app. startup and disable the Welcome screen.
  12. Check this post. Maybe will help you.
  13. After registration, backup the next registry keys: x86 OS: [HKEY_LOCAL_MACHINE\SOFTWARE\Licenses] "{0820063A12D4A77BA}"= "{I820063A12D4A77BA}"= [HKEY_LOCAL_MACHINE\SOFTWARE\WINner Tweak Software\Smarty Uninstaller] "user"= x64 OS: [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Licenses] "{0820063A12D4A77BA}"= "{I820063A12D4A77BA}"= [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\WINner Tweak Software\Smarty Uninstaller] "user"=
  14. The last version is "called": Returnil Virtual System 2010 Home Free 3.0.6517.4958-REL. Start installation and on first screen goto %temp% (usually C:\Documents and Settings\Your Name\Local Settings\Temp) and grab from where one of those .msi files. Use /qb! /norestart or /qn /norestart switches with msi installer.
  15. Another feature request would be changing PEiD with Exeinfo PE, which is more accurate.
  16. You need to integrate SPTD from T13 and install Daemon Tools from RunOnce or RunOnceEx (not sure if work from RunOnceEx).
  17. We know what PEiD does and that the latest version doesn't work in U.E.
  18. You can update the utilities from bin folder. Look here under Credits section (check those url's for updates and copy them in bin folder, overwriting the files).
  19. I have extracted the installer using the latest version of innounp, and the only executable file I found, which can install a toolbar is {tmp}\toolbarsetup_SL1.0_ash_de-DE.exe
  20. Disable Open File - Security Warning in reg format: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download] "CheckExeSignatures"="No" "RunInvalidSignatures"=dword:00000001 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] "LowRiskFileTypes"=".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov ;.mp3;.m3u;.wav;" [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments] "SaveZoneInformation"=dword:00000001 Disable Open File - Security Warningn in inf format: [Version] Signature="$Windows NT$" [Optional Components] MyRegTweaks [DefaultInstall] AddReg =REGEntries.AddReg DelReg =REGEntries.DelReg [MyRegTweaks] OptionDesc ="Registry Entries" Tip ="Registry Entries" Modes =0,1,2,3 AddReg =REGEntries.AddReg DelReg =REGEntries.DelReg [REGEntries.AddReg] HKCU,"Software\Microsoft\Internet Explorer\Download","CheckExeSignatures",0x0,"No" HKCU,"Software\Microsoft\Internet Explorer\Download","RunInvalidSignatures",0x10001,01,00,00,00 HKCU,"Software\Microsoft\Windows\CurrentVersion\Policies\Associations","LowRiskFileTypes",0x0,".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov ;.mp3;.m3u;.wav;" HKCU,"Software\Microsoft\Windows\CurrentVersion\Policies\Attachments","SaveZoneInformation",0x10001,01,00,00,00 [REGEntries.DelReg]
  21. @simpleman Try this script: #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.0.0 Author: myName Ashampoo Burning Studio 9.20 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 Opt("TrayIconDebug", 1) ; Installer file name $Installer = "ashampoo_burning_studio_9_9.20_sm.exe" ; Serial number $SN = "xxxxxx-xxxxxx-xxxxxx" $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 AdlibEnable('_Adlib') ; Run the installer RunWait($Installer & " /sp- /verysilent /norestart") Sleep(2000) ; Settings RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9", "RegKey", "REG_SZ", $SN) RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9", "InfoChannelsEnabled", "REG_DWORD", "0") RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9\ash_inet", "Enabled", "REG_DWORD", "0") ; Restore the default internet browser RegWrite("HKCR\http\shell\open\command\", "", "REG_SZ", $DefaultHttpBrowser) RegWrite("HKCR\https\shell\open\command\", "", "REG_SZ", $DefaultHttpsBrowser) ; Delete page folder and Desktop icon DirRemove(@AppDataCommonDir & "\page", 1) FileDelete(@DesktopCommonDir & "\Go to WWW.THE-PAGE.COM.lnk") ; Stop checking AdlibDisable() Func _Adlib() ; Close MSN toolbar installation process $PID = ProcessExists("toolbarsetup_SL1.0_ash_de-DE.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 EndFunc Func OnAutoItStart() ; One script instance only If WinExists(@ScriptName & '_Interpreter') Then Exit AutoItWinSetTitle(@ScriptName & '_Interpreter') EndFunc
  22. You may download Skype Business (msi installer).
  23. It's correct. I don't use switches in RunOnceEx.cmd. All my installers are silent (very usefull if I have to install again from Windows some of them later).
  24. If you want to apply the tweaks from RunOnce for all users, read the post #9 from here.
×
×
  • Create New...