sick of having to get off my ass to go hard reset my router...
and even worse trying to remote from home to work and vice versa only to find the router on the other end has crashed so can't remote in at all
so I tried to write a batch script to telnet into the local router and restart it each day.... but... a windows telnet won't accept passwords and the batch file can't send them once it's running (spent 2 hours thinking it was just me doing it wrong)
found a small program which can work with telnet to do the username pass wtc...
it needs a batch file to run the program, and point it to a text file with a list of commands in it to run
dropbox link to my versiontst10.exe /r:reboot.txt /m
192.168.1.254
WAIT "Username :"
SEND "Administrator\m"
WAIT "Password :"
SEND "PASSWORD\m"
SEND "system reboot\m"
WAIT "#"
SEND "exit\m"
swap PASSWORD for your password
might need a slight edit to work with your router... I just telnet into mine to play around and figure out what it needed
then it runs at 4am every morning via windows scheduled tasks
have been meaning to do something like this for ages but just never got around to it.... figure it might be handy for some other people too
handy to stick a shortcut onto the desktop of any noob friends/family so they can restart there router easy with a double click :-)