Batch file stuff...need help

Uber_Tiny

New member
I am creating a batch file for running a couple programs at a certain part of the day. That I got going on no problem. One of them is to open a web based time clock.

Can you make the batch file log in to a website for you?

If so, how?

This is what I have...
Code:
@echo off
echo Hello Chris we are going to start your batch file for going home
echo Are you ready?
pause
echo Thank you and good night!
ping 1.1.1.1 -n 1 -w 5000 >> errortext.txt
del errortext.txt
start iexplore http://timecard/
ping 1.1.1.1 -n 1 -w 5000 >> errortext.txt
del errortext.txt
cd /d *directory not disclosed*
"*file info not disclosed*"
exit
* information is private and can not be disclosed due to NDA agreement
 
Back
Top