BR! Client Server - Auto login (via AutoIt)
Posted: Mon Oct 04, 2010 1:52 pm
When the Client Server version of Business Rules! launches it requires you to type your password and press enter each time. This got old so I found a nice little work around. I made the following AutoIt script:
While 1
WinWaitActive("Business Rules! Connect")
Send("your password here")
Sleep(250)
Send("{Enter}")
WEnd
Exit
and compiled it with the latest version of AutoIt (uncompilable) and copied the compiled executable to my "C:\Documents and Settings\JBowman\Start Menu\Programs\Startup" folder.
Now when ever I launch a client server version of Business Rules! it automatically logs me in.
Very convenient.
-John Bowman
While 1
WinWaitActive("Business Rules! Connect")
Send("your password here")
Sleep(250)
Send("{Enter}")
WEnd
Exit
and compiled it with the latest version of AutoIt (uncompilable) and copied the compiled executable to my "C:\Documents and Settings\JBowman\Start Menu\Programs\Startup" folder.
Now when ever I launch a client server version of Business Rules! it automatically logs me in.
Very convenient.
-John Bowman