Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Ashampoo Burning Studio 8 Silent Installation

Featured Replies

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:

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)

  • Author

Thank you very much radix;the script worked like a charm.

  • 3 months later...
Thank you very much radix;the script worked like a charm.

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.

Thank you very much radix;the script worked like a charm.

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.

First install AutoIT and Scite.

How?

Read here:

http://www.dailycupoftech.com/installing-autoit/

After this:

Go to your desktop or some other directory

Click your right mousebutton

Select New, and then AutoIT v3 script

t_autoit1m_026ce79.png

Open the script.

Copy the quote from radix. Paste it in the script.

Change the following:

$EXECUTABLE = "ashampoo_burningstudio802_sm.exe"

Change it to the name of your burningstudio. Maybee you got 801 or 803.

At

; Serial number

$SN = ""

You fill in your serial between the two ""

Then go to file --> SAVE as, and save it however you like. Ashampooburningstudio.au3

Then rightclick it and push Compile Script.

Now you get Ashampooburningstudio.exe

Put this exe and your original installer of Ashampoo (ashampoo_burningstudio802_sm.exe) in your $OEM$ map and run it from CMDLines.txt

  • 1 month later...

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.