phantomEVO Posted November 27, 2007 Posted November 27, 2007 Hi! I'm making a cd to install windows xp sp2+hotfixes in unattended mode. When i will install windows xp i would like to install your shell pack too, vista inspirat ultimate 2 I would like to install it in silent mode (i know it's possible) but i would like to like to select (always in silent mode with some parameter) which applications to install (ubericon, rocket dock etc..) so i have seen that maybe it is possible with autoit....i've downloaded a lot of tutorial and video tutorial but i don't understand how to use it with vispa inspirat ultimate: could you help me??? thank you very much! sorry for my very bad english Ruben
PsaltyDS Posted November 27, 2007 Posted November 27, 2007 Hi!I'm making a cd to install windows xp sp2+hotfixes in unattended mode.When i will install windows xp i would like to install your shell pack too, vista inspirat ultimate 2I would like to install it in silent mode (i know it's possible) but i would like to like to select (always in silent mode with some parameter) which applications to install (ubericon, rocket dock etc..)so i have seen that maybe it is possible with autoit....i've downloaded a lot of tutorial and video tutorial but i don't understand how to use it with vispa inspirat ultimate: could you help me???thank you very much!sorry for my very bad englishRubenVideo tutorial? There's a video tutorial for AutoIt? Still, this is a support request for BricoPack Vista Inspirat Ultimate 2, and they seem to have their own support forum.AutoIt can almost certainly perform the steps for the install, but you'll have to get the steps worked out first. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
phantomEVO Posted November 28, 2007 Author Posted November 28, 2007 yes i've found a video tutorial hereVIDEO TUTORIALyou said"AutoIt can almost certainly perform the steps for the install, but you'll have to get the steps worked out first."can you help me to understand how??
PsaltyDS Posted November 28, 2007 Posted November 28, 2007 yes i've found a video tutorial hereVIDEO TUTORIALyou said"AutoIt can almost certainly perform the steps for the install, but you'll have to get the steps worked out first."can you help me to understand how??Thanks for the link.Have you worked out how to run them silently from a command line (i.e. with /q:a, /r:n, etc.)? Once you have that, it's just a matter of assembling the command line for each file and doing Run()/RunWait() with it. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
phantomEVO Posted November 28, 2007 Author Posted November 28, 2007 i know that it should be "pack-vista-inspirat-2-1.0.exe /S"....but i don't know how to use autoit....please help me!!
PsaltyDS Posted November 28, 2007 Posted November 28, 2007 i know that it should be "pack-vista-inspirat-2-1.0.exe /S"....but i don't know how to use autoit....please help me!!Read the help file under RunWait() and play with the examples (just run DIR, or notepad.exe to start with). If you get stuck post your code and you'll get plenty of help. If, however, you need someone to write it for you see the link to Rent-A-Coder in my sig. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
phantomEVO Posted November 28, 2007 Author Posted November 28, 2007 Read the help file under RunWait() and play with the examples (just run DIR, or notepad.exe to start with). If you get stuck post your code and you'll get plenty of help. If, however, you need someone to write it for you see the link to Rent-A-Coder in my sig. please can you explain better? becuse i don't understand wher i will found teh help file, where is runwait etc...
HeffeD Posted November 28, 2007 Posted November 28, 2007 becuse i don't understand wher i will found teh help file, where is runwait etc...Look in the AutoIt folder...
PsaltyDS Posted November 28, 2007 Posted November 28, 2007 please can you explain better? becuse i don't understand wher i will found teh help file, where is runwait etc...If you installed AutoIt, the help file is in the Start menu under AutoIt. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
phantomEVO Posted November 28, 2007 Author Posted November 28, 2007 but i don't understand how to launch autoit...
PsaltyDS Posted November 29, 2007 Posted November 29, 2007 but i don't understand how to launch autoit... OK, back to the basics. Download and install the current version of AutoIt (3.2.10.0) and the latest version of SciTE for AutoIt. When the installer for either of them gives you a radio button choice between Run or Edit the script, chose Edit to save yourself some hard lessons... Launch SciTE. This is the editor you will write your scripts in. An AutoIt script file (.au3) is just a text file and could be written in Notepad.exe or Edit.com if you wanted, but SciTE makes it much easier. Type in your script. This will do for starters: MsgBox(64, "Hello", "Hello, world!") Select File/Save and save your script with an .au3 extention. If you hit F5 in ScitTE it will run your script. If you hit F7 in SciTE it will "compile" your script as an .exe file that you can run on any Windows machine. When you get that far, you'll be ready for the next lesson, "Wax On" and the much anticipated sequel lecture, "Wax Off". Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
PsaltyDS Posted November 29, 2007 Posted November 29, 2007 (edited) lesson1 ok! and now???Look in the help file at the RunWait() command and code yourself a short script that runs "notepad.exe", waits for it to exit, and then pops a MsgBox() that says Done!. (We're moving towards your installer in steps.) If you get stuck, post the code you are trying to use. Edited November 29, 2007 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now