What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Enable Reboot Schedule not working

Naddel81

New Around Here
Hi @ all,

I wanted to test the feature of rebooting every night to keep it fresh and fast, but no matter which browser I use the feature does not want to stick. It is just ignored.

Is this a FW flaw? I am on the newest FW for my N12D1.

Any help is highly appreciated.

Best wishes!
 
I confirm the issue for router Rt-N12D1. After enabling and setting up the reboot scheduler, clicking "apply", menu page reloads and nothing happens, all check boxes remain empty.
 
Fixed it manually now by using a vbs-script on my server. Sad that asus couldn't fix it in a stable FW release:

Option explicit
Dim oShell
set oShell= Wscript.CreateObject("WScript.Shell")
oShell.Run "telnet"
WScript.Sleep 3000
oShell.Sendkeys "open 192.168.1.1~"
WScript.Sleep 3000
oShell.Sendkeys "admin~"
WScript.Sleep 3000
oShell.Sendkeys "password~"
WScript.Sleep 3000
oShell.Sendkeys "reboot~"
WScript.Sleep 3000
oShell.Sendkeys "~"
Wscript.Quit
 
Similar threads

Similar threads

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top