couzin2000 Posted December 29, 2004 Share Posted December 29, 2004 I have an app that I have to run during my silent install. I use the RunOnceEx method, and there are things I have to type in that command-line app as it runs. -name {enter key}-{enter key} (because it's a blank space)Now, is there a way to make RunOnceEx do that on its own? I know I can enter the command by typingREG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\app\blablabla.exe" /fbut i need the info to be entered as I run this app. Actually, now that I think of it, I have to drop it in $Progs\app\blablabla.exe so that it gets copied in the right place, then have it run from there, while entering the info. Do I have to resort to a batch file to do something like this, or is it at all possible with RunOnceEx? Link to comment Share on other sites More sharing options...
Incroyable HULK Posted December 29, 2004 Share Posted December 29, 2004 If you want to do it via RunOnceEx.cmd, you'll have to call an external script which you can build with AutoIT for example... Link to comment Share on other sites More sharing options...
couzin2000 Posted December 29, 2004 Author Share Posted December 29, 2004 hmm... I was hoping not to have to resort to that. Since you can run commands from the RunOnceEx file (like a batch file), wouldn't it be doable to have the text be "typed-in" and then the enter key being "hit" twice?Or do I absolutely haev to go thru AutoIT? Link to comment Share on other sites More sharing options...
Nologic Posted December 29, 2004 Share Posted December 29, 2004 Batch files can not do what your needing....now if you can get a way with registry entrys...then batch's can do the trick just fine.Other wise to actually type stuff into a running application you will need to use some sort of advanced scripting.Of the main freeware ways to script application input, you have VBS, JS, and AutoIt.So no you don't have to use AutoIT if you prefer not to...but you'll then have to use VBS or JS.I frankly find AutoIT the better choose of the three for this chore. Tho honestly I have no real exprince with VBS so...my views on it directly are mute. Tho between JS and AutoIT...AutoIt is clearly the winner from my perspective.Also any thing you can do in a batch file, you can do in AutoIt...plus a whole lot more.Really I feel that AutoIt should be a main stay tool for admins every where. You get it down to an art form, along with WSH and your life can become a lot better and what you do looks a lot more professional. Link to comment Share on other sites More sharing options...
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