June 17, 200917 yr Hey,Does someone have a working AutoIT script for Ashampoo Burning Studio 9, since the script voor v8 doesnt work with it.Thanks in advance!
June 17, 200917 yr Ashampoo Burning Studio 9 uses Inno Setup, so it should be possible to install it silently with /sp- /silent /norestart.
June 17, 200917 yr Just add pskill for default browser command or you will get the browser openingso mine is like this so if I install Browser in a different order, they are covered:ashampoo_burning_studio_8_804_sm.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- pskill firefox.exe pskill IEXPLORE.EXE pskill opera.exe pskill ashampoo_burning_studio_8_804_sm.exe pskill burningstudio.exe Edited June 17, 200917 yr by steviewonder
June 17, 200917 yr Oh, does v9 still open a browser? If that's the case, you could also use Windows native taskkill command.TASKKILL /F /IM firefox.exeTASKKILL /F /IM iexplore.exeetc.
October 15, 200916 yr Here is a Working Script for version 9.20. I just modified the one for version 8 to work for version 9.20.; Serial number$SN = "xxxxxx-xxxxxx-xxxxxx"Please replace the "x"'s in the below script with your SN.Tested: working in VM.Opt("TrayIconDebug", 1); Executable file name$EXECUTABLE = "ashampooburningstudio9.20sm.exe"; Serial number$SN = "xxxxxx-xxxxxx-xxxxxx"$PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Ashampoo Burning Studio 8_is1", "InstallLocation")If FileExists($PreviousInstallation & "\burningstudio.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Ashampoo Burning Studio before using this script", 4) ExitEndIf; Disable the default internet browser (to prevent Ashampoo Burning Studio to open it)$DefBrowser = RegRead("HKCR\HTTP\shell\open\command\", "")RegDelete("HKCR\HTTP\shell\open\command\", ""); Run the installerRunWait($EXECUTABLE & " /sp- /verysilent /norestart"); Close Ashampoo Burning Studio processProcessWait("burningstudio9.exe")$PID = ProcessExists("burningstudio9.exe")If $PID Then ProcessClose($PID)EndIfSleep(1000); Kill Internet Explorer process if was started$PID = ProcessExists("IEXPLORE.EXE")If $PID Then ProcessClose($PID)EndIf; SettingsRegWrite("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 browserRegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $DefBrowser)
October 23, 200916 yr @Highspeedmacthx for your script, works fineonly msn toolbar installation window pops up!!Can you modify your script to kill this popup??thx in advance
October 24, 200916 yr @simplemanTry 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 hereOpt("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)EndIfIf FileExists($PreviousInstallation & "\burningstudio9.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Ashampoo Burning Studio before using this script", 4) ExitEndIf; 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 checkingAdlibEnable('_Adlib'); Run the installerRunWait($Installer & " /sp- /verysilent /norestart")Sleep(2000); SettingsRegWrite("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 browserRegWrite("HKCR\http\shell\open\command\", "", "REG_SZ", $DefaultHttpBrowser)RegWrite("HKCR\https\shell\open\command\", "", "REG_SZ", $DefaultHttpsBrowser); Delete page folder and Desktop iconDirRemove(@AppDataCommonDir & "\page", 1)FileDelete(@DesktopCommonDir & "\Go to WWW.THE-PAGE.COM.lnk"); Stop checkingAdlibDisable()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) EndIfEndFuncFunc OnAutoItStart() ; One script instance only If WinExists(@ScriptName & '_Interpreter') Then Exit AutoItWinSetTitle(@ScriptName & '_Interpreter')EndFunc Edited October 24, 200916 yr by radix
October 24, 200916 yr Author Thanks radix, but people probably have to edit this point: toolbarsetup_SL1.0_ash_de-DE.exe, since not everyone is GER.
October 25, 200916 yr 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
October 25, 200916 yr Author 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.exeOk, well thats weird.
October 27, 200916 yr @Highspeedmacthx for your script, works fineonly msn toolbar installation window pops up!!Can you modify your script to kill this popup??thx in advanceThat's funny, I don't get any MSN popups or MSN installs with the script.. Guessing they must have updated the install...I have since dropped this app, after finding it was burning more coasters then good CD/DVD's..
Create an account or sign in to comment