Tagged Questions
6
votes
2answers
467 views
Detecting USB power state
Windows has the option of powering down certain peripherals, such as USB ports, to save power (this behavior can be enabled/disabled via Device Manager). The power down happens under various ...
2
votes
2answers
376 views
How to initiate standby/sleep from command-line?
I have found a lot of info about how to shut down computer, put it in hibernation etc via the command line, however, any tips i have read about getting it to sleep as it does from the start-menu has ...
1
vote
2answers
305 views
Receive event before Windows enters standby or hibernate using Win32 API
I'm working on a small chat application written in C++/Qt. My users are complaining that the connection is not shut down gracefully when they are closing the laptop lid and the computer enters ...
1
vote
2answers
284 views
Tell Windows XP to Standby programmatically
How can I tell Windows XP to switch to standby mode programmatically with C/C++ native code?
0
votes
1answer
243 views
Problem with SetSuspendState
I write a small application to enter the computer to Standby Mode:
#include "stdafx.h"
#include <windows.h>
#include <PowrProf.h>
int _tmain(int argc, _TCHAR* argv[])
{
...
0
votes
4answers
583 views
0
votes
1answer
813 views
Adjust volume and prevent computer from standby in Java… (Mac and Windows XP, Vista)
I am writing a Java program that wants to do 3 things, and I don't know how to do them or if it's even possible with Java.
1 - I want to ensure that the computer whether running mac OS or windows ...