
This Hibernates Windows after set amount of time.
os.hibernate(s = 0, m = 0, h = 0, first_turn_hibernate_on = TRUE)
time to wait before shutting down (in seconds), added to m and h; passed to Sys.sleep
time to wait before shutting down (in minutes), added to s and h; passed to Sys.sleep
time to wait before shutting down (in hours), added to s and m; passed to Sys.sleep
default is TRUE. This runs "powercfg -hibernate on" in order to turn hibernate on, in cases where it was off.
The status code of shell
.
http://superuser.com/questions/42124/how-can-i-put-the-computer-to-sleep-from-command-prompt-run-menu , http://www.howtogeek.com/howto/windows-vista/quick-tip-create-shutdown-restart-lock-icons-in-windows-vista/
system
,shell
, Sys.sleep
,
is.windows
, os.shutdown
, os.sleep
, os.hibernate
, os.lock
, os.restart
# NOT RUN {
## when your code is extremely time-consuming,
# you may need this function to run at the
# end of the simulation.
os.hibernate()
# }
Run the code above in your browser using DataLab