Jump to content

Ashampoo Burning Studio 6 Free


SlipStreamer

Recommended Posts

I'm searching for the switches for this app so I can remove the IE bar, the start page and the other options the installer uses.

I already know the switch for the silent install but the rest is missing.

Thanks in advance guys.

Edited by SlipStreamer
Link to comment
Share on other sites


  • 1 year later...

im n00b :(

Please can someone create install file of Ashampoo Burning Rom 6 FULL FREE with this features?

1. Does not install the MyAshampoo toolbar

2. Does not autostart IE (or any browser)

3. Does not change default search scope

4. Does not install gadgets

5. Does not autostart ASBS after install.

This is the original file...i want insert it in WPI without toolbar, IE page etc,,..but i'm very noob please help me :(

http://ashampoo.downloadcluster.com/public/ash/0710/ashampoo_burning_studio_6_free_6.81_4312.exe

Edited by kayo90
Link to comment
Share on other sites

Hmmm. interesting. I may use this Burner software. It APPEARS to be an Inno Setup which DOES extract using UniExtract (search for it using google or her on MSFN) and running the main program APPEARS to make it "stand-alone". Your "problem" is the Conduit program that's embedded in the Installer. I didn't get ANY of the "symptoms" you mentioned when I did it that way. You COULD just "extract" it using UniExtract and "create" your own "installer" (by whatever method).

I downloaded it and that appears how it works (did via the Official site, btw - and it is the same as your link which is unnecessary). Of course if you look inside the "install_script.iss" file you'll find a number of Registry entries that are NOT installed (File Associations, etc). If you're really daring you could "repack" the NSIS Installer (see this). Please don't ask - I haven't used it but it's definitely created with it.

In addition, urie just told you you MUST DOWNLOAD THE AUTOIT PACKAGE (a software that MUST be installed), install it, compile the given script, and VOILA!

You are repeatedly asking for something that has been already provided and just give an alternative/harder way. Just do it!

Addendum - Hmmm... the script urie provided (in the link) needs corrected to change the occurrences of "6.80" to "6.81". AHHH!!! Nope, this won't work with this version - only the previous one (you find it...). It MIGHT work if you ALSO change "MyAshampoo.exe" to "ConduitInstaller.exe" (they have separated a DLL out only, AFAICT).

Link to comment
Share on other sites

If you want install ashampoo_burning_studio_6_free_6.81_4312.exe using AutoIt:

1 - Download and install AutoIt v 3.3.8.1:

http://www.autoitscript.com/site/autoit/downloads/

2 - Launch: ashampoo_burning_studio_6_free_6.81_4312.exe and to know the settings needed to create your au3 file you can use:

AutoIt Window Info (inside the Tab Options: uncheck Freeze)

3 - Here is my AShampoo_Burning_Studio_6.81_FREE.au3 but it is in French

4 - The installation windows will be displayed but the installation is fully silent with custom options!

a. Does not install the MyAshampoo toolbar

b. Does not autostart IE (or any browser)

c. Does not change default search scope

d. Does not install gadgets

e. Does not autostart ASBS after install.

5 - To close at last IE window, I used another script because the previous one doesn't work.

6 - It's needed to change the language script to your needs (example here is French)

7 - You can compile the script using AutoIt (Compile script to exe) to create an exe file to use with WPI: AShampoo_Burning_Studio_6.81_FREE.exe

8 - Set the program 'ashampoo_burning_studio_6_free_6.81_4312.exe' and 'AShampoo_Burning_Studio_6.81_FREE.exe' files inside the same folder (example: ASHAMPOO) and use WPI to launch:

AShampoo_Burning_Studio_6.81_FREE.exe


#cs ----------------------------------------------------------------------------------------

AutoIt Version: 3.3.8.1
Language: French
Author: myselfidem @ MSFN
OS: WinXP, Vista, Windows 7, Windows 8

Ashampoo Burning Studio 6.8.1 Free
Application site: http://www.ashampoo.com/fr/usd/pin/0710/Offline/Ashampoo-Burning-Studio-6

Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------------------

; Script Start - Add your code below here

#include <Misc.au3>
#Include <File.au3>
#Include <Array.au3>
If _Singleton("Ashampoo Burning Studio 6.81 FREE",1) = 0 Then
Exit
EndIf

Opt("TrayIconDebug", 1)

; Installer file name
$Installer = "ashampoo_burning_studio_6_free_6.81_4312.exe"

; Disable InfoChannel
$DisableInfoChannel = 1

$PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Ashampoo Burning Studio 6 FREE_is1", "InstallLocation")
If StringRight($PreviousInstallation, 1) = '\' Then
$PreviousInstallation = StringTrimRight($PreviousInstallation, 1)
EndIf

If FileExists($PreviousInstallation & "\burningstudio.exe") Then
MsgBox(0x40010, @ScriptName, "Veuillez supprimer la version Ashampoo Burning Studio existante avant d'utiliser ce script", 4)
Exit
EndIf

; Save 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
AdlibRegister("_Adlib")

; Run the installer
Run( "ashampoo_burning_studio_6_free_6.81_4312.exe" )

WinWaitActive("Langue de l'assistant d'installation", "Veuillez sélectionner la langue qui sera utilisée par l'assistant d'installation :")
ControlClick("Langue de l'assistant d'installation", "Français", "TNewComboBox1")
ControlClick("Langue de l'assistant d'installation", "OK", "TNewButton1")

WinWaitActive("Installation - Ashampoo Burning Studio 6 FREE", "Bienvenue dans l'assistant d'installation de Ashampoo Burning Studio 6 FREE")
ControlClick("Installation - Ashampoo Burning Studio 6 FREE", "&Suivant >", "TNewButton1")

WinActivate("Installation - Ashampoo Burning Studio 6 FREE", "Veuillez lire le contrat de licence suivant. Vous devez en accepter tous les termes avant de continuer l'installation.")
ControlCommand("Installation - Ashampoo Burning Studio 6 FREE", "Je &refuse les termes du contrat de licence", "TNewRadioButton2", "UnCheck", "")
ControlCommand("Installation - Ashampoo Burning Studio 6 FREE", "Je comprends et j'&accepte les termes du contrat de licence", "TNewRadioButton1", "Check", "")
ControlClick("Installation - Ashampoo Burning Studio 6 FREE", "Je comprends et j'&accepte les termes du contrat de licence", "TNewRadioButton1")
ControlClick("Installation - Ashampoo Burning Studio 6 FREE", "&Suivant >", "TNewButton2")

WinActivate("Installation - Ashampoo Burning Studio 6 FREE", "Type d'installation")
ControlCommand("Installation - Ashampoo Burning Studio 6 FREE", "Installation Express (recommandée)", "TRadioButton4", "UnCheck", "")
ControlCommand("Installation - Ashampoo Burning Studio 6 FREE", "Installation Custom (personnalisée) pour utilisateurs expérimentés", "TRadioButton3", "Check", "")
ControlClick("Installation - Ashampoo Burning Studio 6 FREE", "Installer Barre d'Outils MyAshampoo", "TCheckBox1")
ControlClick("Installation - Ashampoo Burning Studio 6 FREE", "&Suivant >", "TNewButton2")

WinWaitActive("Installation - Ashampoo Burning Studio 6 FREE", "Fin de l'installation de Ashampoo Burning Studio 6 FREE")
ControlCommand("Installation - Ashampoo Burning Studio 6 FREE", "&Terminer", "TNewButton2", "Check", "")
ControlClick("Installation - Ashampoo Burning Studio 6 FREE", "&Terminer", "TNewButton2")

WinWaitActive( "", "http://www.ashampoo.com/frontend/registration/php/regpopinstall.php?session_langid=4&edition_id=ksavpnz5ch0g18tmnvngykflnko14zzg")
Opt("SendKeyDelay", 5)
Send("!+{F4} 2")

Sleep (2000)

; Disable InfoChannel
If $DisableInfoChannel = 1 Then
RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 6\ash_inet", "InfoChannel_-updates-_Enabled", "REG_DWORD", 0)
RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 6\ash_inet", "InfoChannel_ashnews_Enabled", "REG_DWORD", 0)
RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 6", "InfoChannelsEnabled", "REG_DWORD", 0)
RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 6\ash_inet", "Enabled", "REG_DWORD", 0)
EndIf

; Restore the default internet browser
RegWrite("HKCR\http\shell\open\command\", "", "REG_SZ", $DefaultHttpBrowser)
RegWrite("HKCR\https\shell\open\command\", "", "REG_SZ", $DefaultHttpsBrowser)

; Stop checking
AdlibUnRegister("_Adlib")

Func _Adlib()
$FileList = _FileListToArray(@TempDir, "is*.tmp", 2)
If IsArray($FileList) Then
For $i = 1 to $FileList[0]
$Path = @TempDir & "\" & $FileList[$i] & "\ConduitInstaller.exe"
FileDelete($Path)
Next
EndIf
EndFunc

HTH

Edited by myselfidem
Link to comment
Share on other sites

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...