Ashampoo Burning Studio 7.21
CODE
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.2.10.0
Author: myName
Ashampoo Burning Studio 7.21
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
Opt("TrayIconDebug", 1)
Opt("SendKeyDelay", 200)
; Executable file name
$EXECUTABLE = "ashampoo_burningstudio721_sm.exe"
; Installation folder
$INSTALLLOCATION = @ProgramFilesDir & "\Ashampoo\Ashampoo Burning Studio 7"
; Serial number
$SN = "XXXXXX-XXXXXX-XXXXXX"
If FileExists(@ProgramFilesDir & "\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 installer to open it at the end of installation)
$REG = 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)
Sleep(2000)
; Settings
RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 7", "RegKey", "REG_SZ", $SN)
RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 7\ash_inet", "InfoChannel_ashnews_Enabled", "REG_DWORD", "0")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 7\ash_inet", "InfoChannel_-updates-_Enabled", "REG_DWORD", "0")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Burning Studio 7\ash_inet", "FirstStart", "REG_DWORD", "0")
RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 7", "RegKey", "REG_SZ", $SN)
; Restore the default internet browser
RegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $REG)
Ashampoo Magical Snap 2.30
CODE
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.2.10.0
Author: myName
Ashampoo Magical Snap 2.30
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
Opt("TrayIconDebug", 1)
Opt("SendKeyDelay", 200)
; Executable file name
$EXECUTABLE = "ashampoo_magicalsnap230_sm.exe"
; Installation folder
$INSTALLLOCATION = @ProgramFilesDir & "\Ashampoo\Ashampoo Magical Snap 2"
; Choose language (look in X:\Program Files\Ashampoo\Ashampoo Magical Snap 2\lang e.g. English = en-us)
$LangID = "en-us"
; Choose skin (look in X:\Program Files\Ashampoo\Ashampoo Magical Snap 2\Skins e.g. Default skin name = Default)
$SkinName = "Default"
; Serial number
$SN = "XXXXXX-XXXXXX-XXXXXX"
If FileExists(@ProgramFilesDir & "\ashsnap.exe") Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Ashampoo Magical Snap before using this script", 4)
Exit
EndIf
; Disable the default internet browser (to prevent Ashampoo Burning Studio installer to open it at the end of installation)
$REG = RegRead("HKCR\HTTP\shell\open\command\", "")
RegDelete("HKCR\HTTP\shell\open\command\", "")
; Run the installer
RunWait($EXECUTABLE & " /sp- /verysilent /norestart")
; Close Ashampoo Magical Snap process
ProcessWait("ashsnap.exe")
$PID = ProcessExists("ashsnap.exe")
If $PID Then ProcessClose($PID)
Sleep(2000)
; Settings
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "RegistrationKey", "REG_SZ", $SN)
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "LanguageDetected", "REG_DWORD", "1")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "LanguageFile", "REG_SZ", $LangID)
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "SkinName", "REG_SZ", $SkinName)
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "GeneralStartWithWindows", "REG_DWORD", "0")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "GeneralShowSplashScreen", "REG_DWORD", "1")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2", "IntroWindowWelcomeShow", "REG_DWORD", "0")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2\ash_inet", "InfoChannel_ashnews_Enabled", "REG_DWORD", "0")
RegWrite("HKCU\Software\Ashampoo\Ashampoo Magical Snap 2\ash_inet", "InfoChannel_-updates-_Enabled", "REG_DWORD", "0")
RegWrite("HKLM\Software\Ashampoo\Ashampoo Magical Snap 2", "defaultLangID", "REG_SZ", $LangID)
RegWrite("HKLM\Software\Ashampoo\Ashampoo Magical Snap 2", "RegistrationKey", "REG_SZ", $SN)
; Restore the default internet browser
RegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $REG)