Evil_Has_Survived Posted April 2, 2006 Posted April 2, 2006 is it possiable to make a batch file execute a autoit script. If so how would I do it. oh and on last thing can you have a batch file execute a script on boot up. I know what your thinking I better have a good reason for this. well I have wireless and I want it so the batch file will turn on a script and the script turns on my wireless. also mean't for my learning knowledge Thanks Thanks in advance
greenmachine Posted April 2, 2006 Posted April 2, 2006 Yes - learn batch. Most likely - use the registry. Answered your questions.. better post more if you want real help.
Evil_Has_Survived Posted April 2, 2006 Author Posted April 2, 2006 I have heard that batch files aren't good anymore, that windows xp doesn't use it to run the system no more, only windows 95 98, well batch files can still run simple xp functions but not the kind of things I want to do Thanks in advance
pecloe Posted April 2, 2006 Posted April 2, 2006 why don't you forget the batch file and simply run the autoit script at startup?
blindwig Posted April 2, 2006 Posted April 2, 2006 is it possiable to make a batch file execute a autoit script. If so how would I do it.Yes. Use the line "C:\Program Files\AutoIt3\AutoIt3.exe (your script).au3" or "C:\Program Files\AutoIt3\Beta\AutoIt3.exe (your script).au3" for the betaoh and on last thing can you have a batch file execute a script on boot up.Put it in Run or RunOnce in the registry, or put it in one of the StartUp folders, or put it in an OnLogon event in Task Scheduler My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
herewasplato Posted April 2, 2006 Posted April 2, 2006 ...also mean't for my learning knowledge...If you truely want to learn about batch files. Look here: http://www.robvanderwoude.com/index.html and select "Batch files" from the left most menu. It has more than you ever wanted to know. [size="1"][font="Arial"].[u].[/u][/font][/size]
Evil_Has_Survived Posted April 3, 2006 Author Posted April 3, 2006 If you truely want to learn about batch files. Look here: http://www.robvanderwoude.com/index.html and select "Batch files" from the left most menu. It has more than you ever wanted to know.thanks I have been on that site before Thanks in advance
dnsi Posted April 3, 2006 Posted April 3, 2006 what you do is create a file called batch.bat Edit this file and make the batch file you want. on auto it startup you say run("batch.bat") and that is it My Programs:Flip-Flop File Encryption SysyemMULTIPLAYER-SOCKETSERVERHide An Archive In A Picture
DemonAngel Posted April 3, 2006 Posted April 3, 2006 Forget about the batch file. Code what you need in Autoit and compile it to an EXE file. Take the EXE file and copy it to the "c:\Documents and Settings\All Users\Start Menu\Programs\Startup" Folder This will cause the autoit script to run everytime you startup.
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