MSFN Forum: Autoit Scripts - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Autoit Scripts Rate Topic: -----

#1 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 05 August 2004 - 05:30 AM

Hello People, :)
Kicking off a topic for autoit users. Autoit was designed by someone for automating mass PC rollout. Good for us. And free.
Get from http://www.autoitscript.com/autoit3/
My contribution is XP's File and Settings wizard, in this post.
Some details below. Details also included in the script.

; --- File & Settings Wizard ---

; Summary:
; Make F&S Wiz do all the work of setting up your new Desktop, Startmenu, etc.
; Designed this script for mostly settings use.
; Hmm, use script for file extraction instead of using third-party archivers? Sounds cool.
; This script should work OK from CD or HardDrive

; Instructions:
; Recommend installing unattended OS and programs from CD into Virtual Machine.
; Run F&S Wiz after you have made settings the way you like them.
; Save the settings in "$OEM$\$Docs\All Users" in preparation for burning.
; You should now have a folder called "USMT2.UNC" in the above directory.
; Use latest Autoit V3 to compile scipt and put it as a last entry for RunOnceEx.

Hope you enjoy,
Bye. :rolleyes:

Attached File(s)




#2 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 05 August 2004 - 05:37 AM

Here is one for Maxthon Browser. :)

Attached File(s)



#3 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 05 August 2004 - 05:41 AM

Here is one for the dotnet framework v1.1 :)

Attached File(s)



#4 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 15 August 2004 - 09:33 AM

Here is a script for Maxthon Combo v1.0.220. (by request)

P.S.
Sorry, does not install AI Roboform. (too problematic)

Attached File(s)



#5 User is offline   Adiel 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 401
  • Joined: 04-August 04

Posted 15 August 2004 - 09:40 AM

hi

thank u for this app, but i didn't understand what does this app doing :(

#6 User is offline   Tarran 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 12-August 04

Posted 15 August 2004 - 09:53 AM

excellent... now to do a quick search for how to run the script from my cd and how to set maxthon as default from the getgo and I'm set... thanks again...

#7 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 15 August 2004 - 07:05 PM

Adiel:
These are the install scripts created for Autoit to compile. You can edit the script with notepad, to change the target filename etc.
Ensure that you have latest Autoit v3 installed. Just right click on the script and compile.
You just put the compiled exe into the same directory as your program installer and execute the compiled exe from runonceex script.
Should be ok running from CD or harddrive. :)

#8 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 18 August 2004 - 08:37 AM

Agnitum Outpost Pro Firewall 2.11 (Spanish Lang)

Quote

; AutoIt Version: 3.0.102
; Language: English
; Platform: Win9x / NT / XP
; Author:  SiMoNsAyS aka Bio]-[aZaRD
; Script Function: Instalar Agnitum Outpost Pro Firewall 2.11
Opt("TrayIconDebug", 1)
Opt("WinTitleMatchMode", 3)
Run("OutpostProInstall.exe")
BlockInput(1)
;this is language depending, this  4 keystrokes select spanish.
;if yours it's not spanish you will need to change the title and keystrokes for windows and buttons.
;thanks to nateklomp and big_gie : )
WinWaitActive("Select Language")
Send("{DOWN}{DOWN}{DOWN}{DOWN}")
ControlClick("Select Language","OK","Button2")
;pass welcome screen
WinWaitActive("Bienvenido")
Send("S")
;pass license agreement
WinWaitActive("Contrato de Licencia")
ControlClick("Contrato de Licencia","Acepto","Button3")
Send("S")
;pass readme screen
WinWaitActive("Léame")
Send("S")
;select installation directory (default %PROGRAMFILES%\Agnitum\Outpost Firewall)
WinWaitActive("Seleccionar la carpeta de instalación")
Send("S")
;program group only for default user (not all users)
WinWaitActive("Se ha completado la configuración de parámetros necesarios")
ControlClick("Se ha completado la configuración de parámetros necesarios","Crear grupo de programa para todos los usuarios del ordenador","")
Send("S")
;pass automatic config screen
WinWaitActive("Configuración automática")
Send("S")
;default config for aplications
WinWaitActive("Aplicaciones")
ControlClick("Aplicaciones","Utilizar las reglas configuradas automáticamente","Button6")
Send("S")
;default config for local net
WinWaitActive("Red local")
ControlClick("Red local","Utilizar las reglas configuradas automáticamente","Button6")
Send("S")
;pass finish installation screen
WinWaitActive("Se ha completado la instalación")
Send("F")
;the most important on the installation. cancel the reboot now window.
WinWaitActive("Instalar")
ControlClick("Instalar","Cancelar","Button3")
EXIT

To be saved as .au3 file.
More info can be found here

#9 User is offline   benjdr 

  • Group: Members
  • Posts: 5
  • Joined: 18-August 04

Posted 18 August 2004 - 09:40 AM

There is an error in your .Net Framwork script i think. You have a commar in the file name instead of a period,

#10 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 31 August 2004 - 03:26 AM

Here is my scripts for full-unattended.
Working good for me.

Contains:

Runonceex
Dotnet
Acrobat 6.01
Autoit 3.0102
Avast antivirus 4.1
Free dowload manager v1.0
Fraunhofer MP3 pro v1.263
HideOE v1.1
Maxthon Combo v1.0.220
Scite4Autoit3 v1.61
Serials2k v7.1
Sunjava v1.4.2
Talking messenger v3.1
WinRAR v3.3

Might be helpful for anyone. Only 19kb. B)

Attached File(s)



#11 User is offline   Professor Frink 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 302
  • Joined: 17-March 04

Posted 31 August 2004 - 08:42 AM

Here are the ones I use:

PowerDVD 4
PowerDVD 4 patch (build 2417)
Roxio 5.3.5.10 (make sure the 5.3.5.10 patch is in the "Update" folder, and call the file "update.exe")
Roxio drive update "t"
Adaware SE Personal 1.03

Attached File(s)



#12 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 31 August 2004 - 09:07 AM

@benjdr

Nice pickup with the comma, but it is in the comments, not the code.

:P

@Professor Frink

Thanks for the scripts.

:w00t:

#13 User is offline   a06lp 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 976
  • Joined: 19-August 04

Posted 20 September 2004 - 09:03 PM

two questions:

1) Anyone know of a good place to learn how to CREATE these scripts? I want to contribute!

2) If I create an .exe from a script, using "compile script to exe", do i need to have autoit installed on the machine I will use the new exe command on? Or does the exe run standalone?

#14 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 21 September 2004 - 03:50 AM

a06lp, on Sep 20 2004, 09:03 PM, said:

two questions:

1) Anyone know of a good place to learn how to CREATE these scripts?  I want to contribute!

2) If I create an .exe from a script, using "compile script to exe", do i need to have autoit installed on the machine I will use the new exe command on?  Or does the exe run standalone?

1) The Autoit Forum is a good resource for learning Autoit.

2) You will need Autoit to compile scripts to exe. Once compiled, the exe can be run standalone just like any other exe.

You can get Autoit from here.
Also Scite4Autoit3 is an awesome, script editor from here.

Hope your queries are answered.

:)

#15 User is offline   a06lp 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 976
  • Joined: 19-August 04

Posted 21 September 2004 - 06:40 AM

:blushing:
I feel like an id***. I didn't know there was an AutoIt forum....

Sorry!!!

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy