Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.
Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.
We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.
Read Forum Rules
![]() ![]() |
Jul 1 2008, 02:39 AM Post
#221 | |
| Group: Members Posts: 1 Joined: 4-June 08 Member No.: 195134 OS: XP MCE |
Here's my first script ever created, and still learning to use AutoIt. Tested plenty of times to ensure it works flawlessly. Any improvement suggestions welcome. This is for Axialis IconWorkshop 6.20 Professional. Instructions for using this script is in the au3 file. This script will install Axialis IconWorkshop followed by launching it and inserting your name, company, and serial number. It will disable dialogs should file association breaks, along with disabling online registration, and Tip of the Day pop up box. Finally, this script will close the app automatically once it's done. Enjoy CODE #cs ---------------------------------------------------------------------------- AutoIt: 3.2.12.0 Author: InfinitiProject Script Created For: Axialis IconWorkshop 6.20 Professional Instructions: - Run this script in the same directory with Axialis IconWorkshop 6.20 Professional executable. Name it "iconworkshop.exe" if it's named otherwise. - Enter your name, company, and serial number in the fields below. #ce ---------------------------------------------------------------------------- ; Enter Name, Company, and Serial Number Information Here $YourName = "John Doe" $Company = "Company/Location" $SerialNumber = "12345678-12345-12345-12345-12345" ; Axialis IconWorkshop Installation Folder $INSTALLLOCATION = @ProgramFilesDir & "\Axialis IconWorkshop" If FileExists($INSTALLLOCATION & "\IconWorkshop.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall the previous version of Axialis IconWorkshop before this install can proceed.", 10) Exit EndIf ; Axialis Install Executable $Executable = "iconworkshop.exe" ; Start Axialis IconWorkshop 6.20 Professional Install Run($Executable) WinWaitActive("Axialis IconWorkshop 6.20 Installation" , "Welcome to Axialis IconWorkshop 6.20 Installation!") Sleep(1000) Send("{ENTER}") WinWaitActive("Axialis Installation - Product Information" , "Product Information") Sleep(1000) Send("{ENTER}") WinWaitActive("Axialis Installation - User License Agreement", "License Agreement: Terms and Conditions of Use") Sleep(1000) Send("{TAB}{TAB}{TAB}{SPACE}") Sleep(1000) Send("{ENTER}") WinWaitActive("Axialis Installation - Destination Folder", "Destination Folder") Sleep(1000) Send(@ProgramFilesDir) Sleep(1000) Send("\Axialis IconWorkshop") Sleep(1000) Send("{ENTER}") WinWaitActive("Axialis Installation - Installation Successfully Completed", "Installation Successfully Completed!") Send("{TAB}{TAB}{TAB}{SPACE}") Sleep(1000) Send("{ENTER}") ; Launch Axialis IconWorkshop 6.20 Professional Run($INSTALLLOCATION & "\IconWorkshop.exe") ; Waiting For Application to Launch and Load to Configure App Preferences Sleep(9000) ; File Association and Prompt Box If Unassociated WinWaitActive("Warning: File Associations") Send("{TAB}{TAB}{TAB}{SPACE}{TAB}{SPACE}{TAB}") Sleep(1000) Send("{ENTER}") ; Name, Company, Registration Key Information WinWaitActive("Product Activation") Send($YourName) Sleep(1000) Send("{TAB}") Send($Company) Sleep(1000) Send("{TAB}") Send($SerialNumber) Sleep(1000) Send("{ENTER}") Sleep(1000) ; Configure Online Registration (Denying Registration) WinWaitActive("Online Registration Using Internet") Send("{TAB}") Sleep(1000) Send("{TAB}") Sleep(1000) Send("{ENTER}") Sleep(1000) ; Cancel Registration Confirmation WinWaitActive("Axialis IconWorkshop") Send("{ENTER}") Sleep(1000) ; Never Remind About Registration WinWaitActive("Axialis IconWorkshop") Send("{ENTER}") Sleep(1000) ; Welcome to Axialis IconWorkshop! Did you know... WinWaitActive("Welcome to IconWorkshop") Send("{TAB}") Sleep(1000) Send("{TAB}") Sleep(1000) Send("{TAB}") Sleep(1000) Send("{TAB}") Sleep(1000) Send("{TAB}") Sleep(1000) Send("{SPACE}") Sleep(1000) Send("{ENTER}") Sleep(1000) ; Exit Axialis IconWorkshop 6.20 Professional Send("{ALT}") Sleep(1000) Send("{UP}") Sleep(1000) Send("{UP}") Sleep(1000) Send("{ENTER}") ; Force Close Axialis IconWorkshop 6.20 Professional If It's Still Opened $PID = ProcessExists("IconWorkshop.exe") If $PID Then ProcessClose($PID) EndIf This post has been edited by InfinitiProject: Jul 1 2008, 02:43 AM Attached File(s) |
| | |
Nov 7 2008, 10:42 AM Post
#222 | |
| Group: Members Posts: 7 Joined: 5-November 08 Member No.: 217565 OS: none |
My first AutoIt script. This one is really simple, no nonsense. For Firefox Setup 3.0.3.exe though it should work on most older/future setups. Link to Firefox Setup 3.0.3.exe: http://mozilla.stu.edu.tw//firefox/release...tup%203.0.3.exe Important Rename Firefox Setup 3.0.3.exe to Firefox_Setup_3_0_3.exe as AutoIt doesn't like this file name. CODE #cs ---------------------------------------------------------------------------- Firefox_Setup_3_0_3.exe by av2606 #ce ---------------------------------------------------------------------------- ; Define $FireFox $FireFox = "Firefox_Setup_3_0_3.exe" ; Disable mouse and keyboard BlockInput (1) ; Run installer Run($FireFox) ; Control window 1 - Close programs warning window WinWaitActive("Mozilla Firefox Setup", "It is recommended that you close all") ControlClick ("Mozilla Firefox Setup", "It is recommended that you close all", "&Next >") ; Control window 2 - Licence agreement WinWaitActive("Mozilla Firefox Setup", "Press Page Down to see the rest of the agreement") ControlClick ("Mozilla Firefox Setup", "Press Page Down to see the rest of the agreement", "I &accept the terms in the Licence Agreement") ControlClick ("Mozilla Firefox Setup", "Press Page Down to see the rest of the agreement", "&Next >") ; Control window 3 - Default or custom install WinWaitActive("Mozilla Firefox Setup", "You may choose individual options to be installed") ControlClick ("Mozilla Firefox Setup", "You may choose individual options to be installed", "&Next >") ; Control window 4 - Install location WinWaitActive("Mozilla Firefox Setup", "Firefox will be installed to the following location") ControlClick ("Mozilla Firefox Setup", "Firefox will be installed to the following location", "&Install") ; Control window 5 - Finish and exit WinWaitActive("Mozilla Firefox Setup", "Click Finish to close this wizard") ControlClick ("Mozilla Firefox Setup", "Click Finish to close this wizard", "&Launch Firefox now") ControlClick ("Mozilla Firefox Setup", "Click Finish to close this wizard", "&Finish") ; Enable mouse and keyboard BlockInput (0) This post has been edited by av2606: Nov 7 2008, 12:43 PM Attached File(s) |
| | |
Nov 24 2008, 11:24 PM Post
#223 | |
| Group: Members Posts: 6 Joined: 24-November 08 Member No.: 220371 OS: Vista Business x64 | Adobe Shockwave Player 11.0.3.470 Silent Installer I have been looking for a way to do a silent install of Shockwave Player for about a week now. I gave up looking and decided to try to make my own with AutoIt. See Attached. This will disable the Google toolbar installation and allow for a Unattended install of Adobe Shockwave Player 11.0.3.470
Shock.au3 ( 972bytes )
Number of downloads: 159 |
| | |
Dec 1 2008, 09:55 AM Post
#224 | |
| Group: Members Posts: 4 Joined: 22-November 08 Member No.: 220035 OS: Vista Ultimate x86 |
here is my 2 cents scripts for 1. acdsee 31961 2.D-AMN nfo viewer 3.gom player This post has been edited by IcemanSR: Dec 1 2008, 10:14 AM Attached File(s)
acdsee3196.au3 ( 2.56K )
Number of downloads: 47
gom.au3 ( 1.9K )
Number of downloads: 60
damn.au3 ( 1.95K )
Number of downloads: 37 |
| | |
Dec 2 2008, 06:57 AM Post
#225 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 623 Joined: 8-February 07 Member No.: 125681 OS: XP Pro x86 | TechSmith Camtasia Studio 6.0.3.928 This post has been edited by radix: Oct 1 2009, 06:46 AM Attached File(s) |
| | |
Dec 2 2008, 06:58 AM Post
#226 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 623 Joined: 8-February 07 Member No.: 125681 OS: XP Pro x86 | TechSmith SnagIt 9.1.3.19 This post has been edited by radix: Nov 1 2009, 02:54 PM Attached File(s) |
| | |
Dec 23 2008, 02:34 PM Post
#227 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 623 Joined: 8-February 07 Member No.: 125681 OS: XP Pro x86 | DAEMON Tools Lite 4.35.5.0068 with SPTD 1.62 This post has been edited by radix: Nov 15 2009, 09:37 AM Attached File(s) |
| | |
Apr 24 2009, 05:30 AM Post
#228 | |
| Junior ![]() Group: Members Posts: 95 Joined: 2-October 03 Member No.: 7643 |
thanks for the update |
| | |
May 3 2009, 10:05 PM Post
#229 | |
| Newbie Group: Members Posts: 22 Joined: 5-September 07 From: Winnipeg Member No.: 153654 OS: none | |
| | |
Jun 6 2009, 10:26 PM Post
#230 | |
| Group: Members Posts: 4 Joined: 20-October 07 Member No.: 159039 OS: 2003 x86 | |
| | |
Jun 10 2009, 11:22 PM Post
#231 | |
| Junior ![]() Group: Members Posts: 61 Joined: 25-June 07 Member No.: 144401 OS: XP Pro x86 | My first AutoIt script. This one is really simple, no nonsense. For Firefox Setup 3.0.3.exe though it should work on most older/future setups. Link to Firefox Setup 3.0.3.exe: http://mozilla.stu.edu.tw//firefox/release...tup%203.0.3.exe Important Rename Firefox Setup 3.0.3.exe to Firefox_Setup_3_0_3.exe as AutoIt doesn't like this file name. CODE #cs ---------------------------------------------------------------------------- Firefox_Setup_3_0_3.exe by av2606 #ce ---------------------------------------------------------------------------- ; Define $FireFox $FireFox = "Firefox_Setup_3_0_3.exe" ; Disable mouse and keyboard BlockInput (1) ; Run installer Run($FireFox) ; Control window 1 - Close programs warning window WinWaitActive("Mozilla Firefox Setup", "It is recommended that you close all") ControlClick ("Mozilla Firefox Setup", "It is recommended that you close all", "&Next >") ; Control window 2 - Licence agreement WinWaitActive("Mozilla Firefox Setup", "Press Page Down to see the rest of the agreement") ControlClick ("Mozilla Firefox Setup", "Press Page Down to see the rest of the agreement", "I &accept the terms in the Licence Agreement") ControlClick ("Mozilla Firefox Setup", "Press Page Down to see the rest of the agreement", "&Next >") ; Control window 3 - Default or custom install WinWaitActive("Mozilla Firefox Setup", "You may choose individual options to be installed") ControlClick ("Mozilla Firefox Setup", "You may choose individual options to be installed", "&Next >") ; Control window 4 - Install location WinWaitActive("Mozilla Firefox Setup", "Firefox will be installed to the following location") ControlClick ("Mozilla Firefox Setup", "Firefox will be installed to the following location", "&Install") ; Control window 5 - Finish and exit WinWaitActive("Mozilla Firefox Setup", "Click Finish to close this wizard") ControlClick ("Mozilla Firefox Setup", "Click Finish to close this wizard", "&Launch Firefox now") ControlClick ("Mozilla Firefox Setup", "Click Finish to close this wizard", "&Finish") ; Enable mouse and keyboard BlockInput (0) i think this much code is not need fro firefox because silent switch of firefox is -ms why dont make a script with that |
| | |
Jun 15 2009, 05:47 PM Post
#232 | |
| Newbie Group: Members Posts: 10 Joined: 16-May 08 Member No.: 192357 OS: XP Pro x86 | |
| | |
Jun 21 2009, 04:12 PM Post
#233 | |
| Newbie Group: Members Posts: 12 Joined: 4-August 07 From: Columbus, MS Member No.: 149302 OS: Vista Home Premium x86 |
Hi All! Comodo Internet Security 32-Bit & Comodo Firewall Only 32-Bit for XP & Vista can be found Here 64-Bit - Coming as soon as I get my hands on some 64-Bit machines. Enjoy All! This post has been edited by pcjames: Jun 21 2009, 04:14 PM |
| | |
Jul 14 2009, 02:52 AM Post
#234 | |
| Group: Members Posts: 1 Joined: 14-July 09 Member No.: 251647 OS: XP Pro x64 | utorrent 1.8.5 (build 17091) Couldn't find another autoit for utorrent, so decided to post my own here. This script is customized for my personal settings, anyone can take it and modify it to their purposes... I made it specifically to use with WPI (so not many configuration options are set) It's commented to help with modification should anyone need to.. enjoy! This post has been edited by gorara: Nov 7 2009, 07:16 AM Attached File(s) |
| | |
Aug 10 2009, 12:47 PM Post
#235 | |
| Group: Members Posts: 1 Joined: 9-August 09 Member No.: 255767 OS: XP Pro x86 | Winamp 5112_pro with settings CODE #NoTrayIcon $DELAY = 400 Run ( "winamp5112_pro.exe" ) WinWaitActive("Winamp Setup", "License Agreement") Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) WinWaitActive ( "Winamp Setup" , "Choose Components" ) Send("{TAB}") Sleep($DELAY) Send("{DOWN}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{DOWN}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{DOWN 4}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{TAB 2}") Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) WinWaitActive ( "Winamp Setup" , "Choose Install Location" ) Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) WinWaitActive ( "Winamp Setup" , "Choose Install Options" ) Sleep($DELAY) Send("{DOWN 3}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{DOWN 2}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{TAB 2}") Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) WinWaitActive ( "Winamp Setup" , "Internet Connection and Language Settings" ) Sleep($DELAY) Send("{DOWN 2}") Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) WinWaitActive ( "Winamp Setup" , "Interface and Skin Selection" ) Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) WinWaitActive ("1. DJ Mike Llama - Llama Whippin' Intro - Winamp [Stopped]" , "") Sleep($DELAY) Send("!f") Sleep($DELAY) Send("#o") Sleep($DELAY) Send("#p") Sleep($DELAY) WinWaitActive ("Winamp Preferences" , "") Sleep($DELAY) Send("{UP}") Sleep($DELAY) Send("{TAB 5}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("USERNAME") Sleep($DELAY) Send("{TAB}") Sleep($DELAY) Send("SERIAL") Sleep($DELAY) Send("{TAB}") Sleep($DELAY) Send("{ENTER}") Sleep($DELAY) Send("{TAB 2}") Sleep($DELAY) Send("{DOWN}") Sleep($DELAY) Send("{TAB 9}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{TAB}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{TAB 8}") Sleep($DELAY) Send("{DOWN}") Sleep($DELAY) Send("{TAB 4}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) Send("{TAB 10}") Sleep($DELAY) Send("{SPACE}") Sleep($DELAY) WinWaitActive("[CLASS:Winamp v1.x]") WinClose("[CLASS:Winamp v1.x]") |
| | |
Sep 28 2009, 03:10 AM Post
#236 | |
| Group: Members Posts: 5 Joined: 3-January 07 Member No.: 120213 |
TCP-Z, V2.6.1.72 (the in memory tcpip.sys patcher-driver (default value after appling patch is 252) CODE Run('TCPZ_Setup-x86.exe') WinWaitActive('TCP/IP Half Open Limited Patcher (TCP-Z)') send("{ENTER}") WinWaitActive('TCP/IP Half Open Limited Patcher (TCP-Z)') ControlClick('TCP/IP Half Open Limited Patcher (TCP-Z)','Action','Button1') send("{ENTER}") WinWaitActive('TCP/IP Half Open Limited Patcher (TCP-Z)') send("{ENTER}") WinWaitActive('OK') send("{ENTER}") If WinExists('TCP/IP Half Open Limited Patcher (TCP-Z)') Then WinClose('TCP/IP Half Open Limited Patcher (TCP-Z)') EndIf sleep(1000) WinWaitActive('Device Manager') WinClose('Device Manager') This post has been edited by CrackMe: Sep 28 2009, 03:21 AM |
| | |
Sep 28 2009, 03:17 AM Post
#237 | |
| Group: Members Posts: 5 Joined: 3-January 07 Member No.: 120213 |
NOD32 2.70.39 EN - Standard (retail) CODE Run('setup.exe') WinWaitActive('Setup Wizard') ControlCommand('Setup Wizard','Installation','Expert (Fully customized installation)','Check','') send("!n") WinWaitActive('End-user Software License Agreement') ControlCommand('End-user Software License Agreement','SOFTWARE LICENSE AGREEMENT','I agree','Check','') send("!n") WinWaitActive('Select destination folder') send("!n") WinWaitActive('Setup of Automatic Update') ControlCommand('Setup of Automatic Update','Automatic Internet update of NOD32 system will only work if a valid Username and Password are entered in the fields below. Username and Password are assigned by the vendor or distributor, and must be entered exactly as printed on the license.','Set update parameters later','Check','') send("!n") WinWaitActive('General Setup') send("!n") WinWaitActive('Program graphics and splash screen options') ControlCommand('Program graphics and splash screen options','To disable display of the NOD32 splash screen at system startup, select the appropriate checkbox.','Do not display NOD32 splash screen at startup','Check','') send("!n") WinWaitActive('Warning distribution') send("!n") WinWaitActive('ThreatSense.Net Early Warning System') send("!e") send("!n") WinWaitActive('Detection of potentially unwanted applications') send("!d") send("!n") WinWaitActive('File system monitor - AMON') send("!n") WinWaitActive('On-Demand Scanner integration') send("!n") WinWaitActive('Microsoft Office document protection (DMON)') ControlCommand('Microsoft Office document protection (DMON)','DMON protects your computer against infiltrations in Microsoft Office documents.','Enable protection of Microsoft Office documents (DMON)','Check','') send("!n") WinWaitActive('Internet Monitor (IMON)') ;ControlCommand('Internet Monitor (IMON)','It is designed principally for workstations and should not be enabled on servers.','Register Internet monitor (IMON) to the system','Check','') Send("{SPACE}") send("!n") WinWaitActive('Email monitor for Microsoft Outlook (EMON)') send("!e") send("!n") WinWaitActive('Setup configuration complete') send("!n") WinWaitActive('Installation complete') ControlCommand('Installation complete','','Restart later','Check','') send("{ENTER}") This post has been edited by CrackMe: Sep 28 2009, 03:20 AM |
| | |
Oct 29 2009, 07:52 PM Post
#238 | |
| Group: Members Posts: 7 Joined: 21-September 08 Member No.: 210980 OS: none |
Here is a script for DAP - Download Accelerator Plus Version 93, for offline install, pls don't use it when you're online. This is for free version and it won't put any desktop icons and would also stop internet explorer or firefox to run at the end This post has been edited by laz3boy: Oct 29 2009, 07:58 PM Attached File(s) |
| | |
![]() ![]() |
| Lo-Fi Version | Time is now: 22nd November 2009 - 03:26 AM |