Is there command to use on windows from java to make the computer sleep?

link

68% accept rate
Removed the hibernate tag as it refers to the ORM. – Spencer Ruport Sep 2 '09 at 17:41
feedback

4 Answers

up vote 3 down vote accepted

You can do it by executing a shell command, if you java app has enough rights to do so. The command is...

Runtime.getRuntime().exec("Rundll32.exe powrprof.dll,SetSuspendState Sleep");

That and other commands are shown here.

link
1  
even though the OP accepted this as the answer, future readers should look at stackoverflow.com/questions/1369122/sleep-windows-from-java/… also. – Trevor Harrison Sep 3 '09 at 15:11
feedback

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.

link
1  
why the hate for this answer? seems thoughtful and helpful. At least comment when you -1. – Trevor Harrison Sep 2 '09 at 20:12
1  
after reading the blog entry, +1 from me. – Trevor Harrison Sep 2 '09 at 20:13
OK. So the RunDLL32 process ends up with a corrupted stack after calling the function. Who cares? It can't 'infect' the parent process and by the time it occurs the function has already been called. – Jherico Sep 2 '09 at 20:55
@Jherico: no, that's not the problem, the problem is, you will be calling SetSuspendState with UNKNOWN arguments, and since SetSuspendState will hibernate OR standby depending on the arguments, that's a bit of a problem – Anders Sep 2 '09 at 21:28
1  
point taken. Well, there's always JNI – Jherico Sep 2 '09 at 21:42
show 1 more comment
feedback

No. You'd need to execute a separate binary via Runtime.exec().

This article suggests

rundll32 Powrprof.dll,SetSuspendState

but I've not tried it.

link
feedback

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.

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.