Is there command to use on windows from java to make the computer sleep?
|
|
You can do it by executing a shell command, if you java app has enough rights to do so. The command is...
That and other commands are shown here. |
|||||
|
|
Anyone suggesting rundll32 should be shot, very few functions are designed to be called by rundll32 and SetSuspendState is not one of them. You will get random behavior (Hibernate vs Standby and Forced vs not forced etc) See this blog entry for more details. |
|||||||||||||||||
|
|
I currently solved this using https://github.com/twall/jna. Information about the call from http://www.pinvoke.net/default.aspx/powrprof.SetSuspendState
Call it than with |
|||
|
|
|
No. You'd need to execute a separate binary via This article suggests
but I've not tried it. |
|||
|
|
|
You may want to look at the OnNow/ACPI Support here. There is also an old SO post that talks about it here. Probably the reverse of what you want. Might give you some clues though. |
|||
|
|