Answer» Hey,
One of our servers constantly ask for domain username and PASSWORD, which is really annoying as our password is very long.
what i am TRYING to do is create a sheduled task that runs after its PREDECESSOR which prompts for username and pass and get it to TYPE in my username + password and hit ok.
i know in dos you can output to a text file by
@echo off echo username* >> username.txt echo password* >> password.txt
this would save my daily job and put it in a scheduled task.
help would be greatly appreciatedWell if you know how often it prompts you? You can set your batch file to open at intervals with the scheduled tasks manager.
Batch won't be able to add text to text boxes, but if you can get your program to recieve the username and password from a file, then you're good to go!wasnt my program so scimming THRO all the code will be difficult.. any external programs that will do it?A macro? Something like Autohotkey is good to use.
|