Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Start the installation for each package (micro and lite) and you will find the answer.
  2. Try this: #cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.10.0 Author: myName VLC media player 0.8.6d Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Opt("TrayIconDebug", 1) Opt("SendKeyDelay", 200) ; Executable file name $EXECUTABLE = "vlc-0.8.6d-win32.exe" ; Start menu shortcut $StartMenu = "1" ; Desktop shortcut $Desktop = "1" ; Mozilla plugin $Mozilla = "1" ; ActiveX plugin $ActiveX = "1" ; Context menus $Context = "1" ; File type associations $FileAssoc = 1 ; Delete preferences and cache $Cache = "1" ; Installation folder $INSTALLLOCATION = @ProgramFilesDir & "\VideoLAN\VLC" If FileExists($INSTALLLOCATION & "\vlc.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of VLC media player before using this script", 4) Exit EndIf ; Run the installer Run($EXECUTABLE) ; Please select a language. WinWait("Installer Language", "Please select a language.") WinActivate("Installer Language", "Please select a language.") ControlClick("Installer Language", "", "Button1") ; Welcome to the VideoLAN VLC media player 0.8.6d Setup Wizard WinWaitActive("VideoLAN VLC media player 0.8.6d Setup", "Welcome to the VideoLAN VLC media player 0.8.6d Setup Wizard") ControlClick("VideoLAN VLC media player 0.8.6d Setup", "", "Button2") ; License Agreement WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "License Agreement") ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2") ; Choose Components WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "Choose Components") Send("{TAB}") Send("{DOWN}") If $StartMenu = 0 Then Send("{SPACE}") EndIf Send("{DOWN}") If $Desktop = 0 Then Send("{SPACE}") EndIf Send("{DOWN}") If $Mozilla = 1 Then Send("{SPACE}") EndIf Send("{DOWN}") If $ActiveX = 0 Then Send("{SPACE}") EndIf Send("{DOWN}") If $Context = 1 Then Send("{SPACE}") EndIf Send("{DOWN}") If $FileAssoc = 0 Then Send("{SPACE}") EndIf Send("{DOWN}") If $Cache = 1 Then Send("{SPACE}") EndIf ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2") ; Choose Install Location WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "Choose Install Location") ControlSetText("VideoLAN VLC media player 0.8.6d Setup ", "", "Edit1", "") Sleep(1000) ControlSetText("VideoLAN VLC media player 0.8.6d Setup ", "", "Edit1", $INSTALLLOCATION) ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2") ; Completing the VideoLAN VLC media player 0.8.6d Setup Wizard WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "Completing the VideoLAN VLC media player 0.8.6d Setup Wizard") ControlCommand("VideoLAN VLC media player 0.8.6d Setup ", "", "Button4", "UnCheck", "") ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2") Edit variables from the top to meet your desire.
  3. Which components do you need from these: start menu shortcut desktop shortcut Mozilla plugin ActiveX plugin Context Menus File type associations Delete preferences and cache?
  4. Because /S switch will install with the default options (recommended).
  5. Try the next script for Avira AntiVir PersonalEdition Classic 7.06.00.270 : #cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.10.0 Author: myName Avira AntiVir PersonalEdition Classic 7.06.00.270 Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Opt("TrayIconDebug", 1) Opt("SendKeyDelay", 200) ; Executable file name $EXECUTABLE = "antivir_workstation_win7u_en_h.exe" ; Installation folder $INSTALLLOCATION = @ProgramFilesDir & "\Avira\AntiVir PersonalEdition Classic" If FileExists($INSTALLLOCATION & "\avguard.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Avira before using this script", 4) Exit EndIf ; Run the installer Run($EXECUTABLE) ; Accept WinWait("Avira AntiVir PersonalEdition Classic", "Accept") WinActivate("Avira AntiVir PersonalEdition Classic", "Accept") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button1") ; Welcome to the setup for WinWaitActive("Avira AntiVir PersonalEdition Classic", "Welcome to the setup for") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button2") ; Avira AntiVir PersonalEdition Classic is designed to protect your system from threats of various kinds. WinWaitActive("Avira AntiVir PersonalEdition Classic", "Avira AntiVir PersonalEdition Classic is designed to protect your system from threats of various kinds.") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button2") ; I &accept the terms of the license agreement WinWaitActive("Avira AntiVir PersonalEdition Classic", "I &accept the terms of the license agreement") ControlCommand("Avira AntiVir PersonalEdition Classic", "", "Button1", "Check", "") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button3") ; I accept that Avira AntiVir PersonalEdition Classic is for private use WinWaitActive("Avira AntiVir PersonalEdition Classic", "I accept that Avira AntiVir PersonalEdition Classic is for private use") ControlCommand("Avira AntiVir PersonalEdition Classic", "", "Button1", "Check", "") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button4") ; Generate random serial number and submit during update WinWaitActive("Avira AntiVir PersonalEdition Classic", "Generate random serial number and submit during update") ControlCommand("Avira AntiVir PersonalEdition Classic", "", "Button1", "UnCheck", "") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button5") ; All program features will be installed. WinWaitActive("Avira AntiVir PersonalEdition Classic", "All program features will be installed.") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button7") ; Installation complete WinWaitActive("Avira AntiVir PersonalEdition Classic", "Installation complete") ControlCommand("Avira AntiVir PersonalEdition Classic", "", "Button1", "UnCheck", "") ControlClick("Avira AntiVir PersonalEdition Classic", "", "Button12") ; Do you want to start an update now? WinWaitActive("Setup of Avira AntiVir PersonalEdition Classic", "Do you want to start an update now?") ControlClick("Setup of Avira AntiVir PersonalEdition Classic", "", "Button2") ; Close scan process ProcessWait("avscan.exe") $PID = ProcessExists("avscan.exe") If $PID Then ProcessClose($PID) EndIf
  6. I need more information. For example: you need to enter a s/n into a field. -check the window title -some text which appear in that window (you find this under the control section in AutoIt v3 Window Info) -class and instance of that field (click with mouse on that field and then CTRL+ALT+F to freeze AutoIt v3 Window Info and you will found this under control section in AutoIt v3 Window Info An example: WinWaitActive("Enter Licensing Information", "Start") ControlSetText("Enter Licensing Information", "", "Edit2", $SN) "Enter Licensing Information" is window title "Start" is text found in the area of window (found under Control section) "Edit" is Class (found under Control section) 2 is Instance (found under Control section) $SN is serial number (this variable must be declared on top of the script like this $SN = "xxxxxxxxx")
  7. Realtek AC'97 Audio Driver is not compatible with svcpack. Now I installed all from WPI except for directx9.0c addon, kels uber addon, rvmupdatepack and sptdinst 1.55.
  8. Nice tutorial. Take a look here now.
  9. What AutoIt? Using SetupDVDDecrypter_3.5.4.0.exe /S /NCRC is enough.
  10. You need to kill the process which is start after installation (the executable file of program) The name of process can be found in Task Manager when you test your installer.
  11. Hi You can install VMWare player with these switches: /qn /norestart ADDLOCAL=ALL DESKTOP_SHORTCUT=0 DISABLE_AUTORUN=0 QUICKLAUNCH_SHORTCUT=0 Modify to meet your needs. For Eula and updates you need to create this folder: X:\Documents and Settings\Your Name\Application Data\VMware after installation and place inside a file named preferences.ini with this content: pref.eula.0.appName = "VMware Player" pref.vmplayer.webUpdateOnStartup = "FALSE" Use batch scripting for this job. A very similar method works for VMWare workstation.
  12. You can find a video tutorial with audio track in bulgarian language here For me it was useful some months ago.
  13. Backup this folder: X:\Documents and Settings\All Users\Application Data\FLEXnet Try to reinstall Dreamweaver in a fresh Windows install and see if it works with that backup.
  14. Nothing wrong there. If you unpack the .exe you will find a dll file inside. Thanks Shark for the updated files.
  15. I've got this error when I tried to download the new Shockwave installer: Not Found The requested URL /shark007/files/swInstaller.exe was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Apache/1.3.33 Server at picsbook.net Port 80
  16. It was updated 2 weeks ago. shark But files version in your installer is still 10.2.0.23
  17. Elajua stop bumping this thread. I know the switch for Wise installer.
  18. Shockwave Player 10.3.0.24 is now availlable for download on Adobe's site. Can you make a new pack with this installer?
  19. Try my installer Contain Microsoft .NET Framework 2.0SP1x64, 3.0SP1x64 and 3.5x64. Inspired by instructions posted on Aaron Stebner's blog and some installers made by Rogue Spear. Installer size: 54.5 MB Rar password: netfx35 Rar hashes: CRC32: E385984A MD5: 2215227F7867B26CDE37D3B4940CB0A7 SHA-1: 751C657DDEA8826A93323395A527DA496BF43675
  20. http://www.4shared.com/file/23674969/e97b1...A3X_15.html?s=1
  21. Try this: phtkinst.exe /sp- /verysilent /norestart /components="" /tasks="" and tell me if you have errors.
×
×
  • Create New...