Jump to content

Ashampoo Burning Studio V8.3 (NLD)


Raoul90

Recommended Posts

Hey,

Im using the following in my installtips.ini (cmdlines):

ashampoo_burningstudio803_sm.exe /VERYSILENT SP- /NORESTART

But when the setup has finished it starts a webpage and some activation-stuff:

f_ashampoom_6611d87.png

I found some script on this forum but that was for older version so i dont know if that will work.

Link to comment
Share on other sites


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 :whistle:

Sorry about the post in the wrong place :blushing:

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)
Exit
EndIf

; 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 installer
RunWait($EXECUTABLE & " /sp- /verysilent /norestart")

; Close Ashampoo Burning Studio process
ProcessWait("burningstudio.exe")
$PID = ProcessExists("burningstudio.exe")
If $PID Then
ProcessClose($PID)
EndIf

Sleep(1000)

; Kill Internet Explorer process if was started
$PID = ProcessExists("IEXPLORE.EXE")
If $PID Then
ProcessClose($PID)
EndIf

; Settings
RegWrite("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 browser
RegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $DefBrowser)

Edited by Raoul90
Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...