Jump to content

DaRk MaDnEsS

Member
  • Posts

    39
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Egypt

About DaRk MaDnEsS

  • Birthday 02/18/1991

Profile Information

  • OS
    Windows 7 x86

Recent Profile Visitors

913 profile views

DaRk MaDnEsS's Achievements

0

Reputation

  1. It's ok, I've worked out how to perform automated installs using the Config.xml file. mind sharing it ?
  2. well as you assumed the problem is in the extraction you need to run the setup go to the temp get the extracted files make an exe with switch in winrar or 7-zip add it to WPI and that should have the roblem fixed
  3. well there was a small thing while i copied the code make this line $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ Ashampoo Burning Studio 9_is1", "InstallLocation") like this $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Ashampoo Burning Studio 9_is1", "InstallLocation") after the Uninstall\Ashampoo
  4. PEChecksum by n7Epsilon. it's an alternative to the ModifyPe
  5. #cs ----------------------------------------------------------------------------AutoIt Version: 3.3.4.0 Author: myName Ashampoo Burning Studio 9.20 Application site: http://www2.ashampoo.com/webcache/html/1/product_2_2210___USD.htm Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here #Include <Misc.au3> If _Singleton("Nullsoft Winamp 5.5.7.2830",1) = 0 Then Exit EndIf Opt("TrayIconDebug", 1) ; Installer file name $Installer = "ashampoo_burning_studio_9_9.20_sm.exe" ; Serial number $SN = "xxxxxx-xxxxxx-xxxxxx" $PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Ashampoo Burning Studio 9_is1", "InstallLocation") If StringRight($PreviousInstallation, 1) = '\' Then $PreviousInstallation = StringTrimRight($PreviousInstallation, 1) EndIf If FileExists($PreviousInstallation & "\burningstudio9.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Ashampoo Burning Studio before using this script", 4) Exit EndIf ; Save and disable 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 RunWait($Installer & " /sp- /verysilent /norestart") Sleep(2000) ; Settings RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9", "RegKey", "REG_SZ", $SN) RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9", "InfoChannelsEnabled", "REG_DWORD", "0") RegWrite("HKLM\Software\Ashampoo\Ashampoo Burning Studio 9\ash_inet", "Enabled", "REG_DWORD", "0") ; Restore the default internet browser RegWrite("HKCR\http\shell\open\command\", "", "REG_SZ", $DefaultHttpBrowser) RegWrite("HKCR\https\shell\open\command\", "", "REG_SZ", $DefaultHttpsBrowser) ; Delete page folder and Desktop icon DirRemove(@AppDataCommonDir & "\page", 1) FileDelete(@DesktopCommonDir & "\Go to WWW.THE-PAGE.COM.lnk") ; Stop checking AdlibUnRegister("_Adlib") Func _Adlib() ; Close MSN toolbar installation process $PID = ProcessExists("toolbarsetup_SL1.0_ash_de-DE.exe") If $PID Then ProcessClose($PID) EndIf ; Close Ashampoo Burning Studio process $PID = ProcessExists("burningstudio9.exe") If $PID Then ProcessClose($PID) EndIf ; Close Internet Explorer process if was started $PID = ProcessExists("IEXPLORE.EXE") If $PID Then ProcessClose($PID) EndIf EndFunc this should work fine and if there is any error submit it in here and i will have a look ABS.au3 ABS.au3
  6. i don't know if that is the problem but in winrar you don't need the rundll32.exe etc.. line in the winrar sfx just type the install.inf
  7. well i did a lot of search and it seem that you are correct none knows how to integrate it with the Messenger or search for one file i'm searching now if i can find how the shell extension make the it but nothin until now and it seem that there are a lot of topic requesting that functionality
  8. added the Link to the First Post so it would easy to see for every one
  9. well since you want to slipstream the update pack why don't you go with an already made update pack by one peice here just download then slipstream it have IE8 and WMP 11 already included in them
  10. there is a command line in it but don't know if it possible to integrate it with Windows Live
  11. can you upload the last session ? or at least what are you integrating so that happens ?
  12. thanks you but the "#include" is important? because its say Error : #include Error:Cannot parse #include and if i remove the "#include" its say Error: If _Singleton("Nullsoft Winamp 5.5.7.2830",1) = 0 Then If ^ ERROR Error: Unknown function name. what is the problem? make it #Include <Misc.au3> that should fix the problem
  13. glad to see that it solved the problem hope you test it and works fine
  14. hmm can you uninstall them and then reinstall ? cause for some reason the install didn't add the files 1-go to Add/Remove and open Windows Live Essential and delete all theme 2-install Windows Installer CleanUp and make sure that they are deleted if the entries not exist in Add/Remove go to step 2 and remove them then reinstall
×
×
  • Create New...