September 21, 200817 yr Hey,Im using the following in my installtips.ini (cmdlines):ashampoo_burningstudio803_sm.exe /VERYSILENT SP- /NORESTARTBut when the setup has finished it starts a webpage and some activation-stuff:I found some script on this forum but that was for older version so i dont know if that will work.
September 21, 200817 yr I found some script on this forum but that was for older version so i dont know if that will work.There´s an easy way to test, make a batch and test instalation in your current windows...
September 22, 200817 yr Author Yes i will try this, but i dont know if it will work in cmdlines. It should work i think because its an AutoIT script, will try it this week.I need to install Ashampoo Burning studio 8 silently from runonceex,with serial inserted if possible.Autoit scripts are also welcome.Thanks in advance Sorry about the post in the wrong place Try this:Opt("TrayIconDebug", 1); Executable file name$EXECUTABLE = "ashampoo_burningstudio802_sm.exe"; Serial number$SN = ""$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("burningstudio.exe")$PID = ProcessExists("burningstudio.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("HKCU\Software\Ashampoo\Ashampoo Burning Studio 8", "RegKey", "REG_SZ", $SN)RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 8\ash_inet", "InfoChannel_ashnews_Enabled", "REG_DWORD", "0")RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 8\ash_inet", "InfoChannel_-updates-_Enabled", "REG_DWORD", "0"); Restore the default internet browserRegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $DefBrowser) Edited September 22, 200817 yr by Raoul90
October 13, 200817 yr Can anyone make addones with Ashampoo Burning Studio or explain to me how to use this code to make Ashampo Burning Studio 8 addone?Because I don't understand where I copy that code and How it make.TnX.
Create an account or sign in to comment