I'm trying to add functionality in my program that will allow the user to wake their system from sleep at a set duration.

I've googled a lot about this and the examples online don't seem to work.

I've used WaitableTimer set the system to go to sleep but it doesn't seem to wake up.

Can anyone help me out here.

for code reference, I am using WPF

Thanks

link|improve this question

What do you mean by “system” — the operating system, i.e. Windows, or your application? What actually do you mean by the “sleep” state and the “wake up” event? I think there are more ways to understand your question. – Ondrej Tucny Oct 1 '10 at 14:11
When I mean System I mean the machine, Sleep state means when you can set the system to sleep, as there are sleep and hibernate states, I want to bring it out of sleep from my application. I read that a WaitableTimer actually does still run when the systems asleep, but can't get it to work. – Sandeep Bansal Oct 1 '10 at 14:16
You are not asking this question the Smart Way. There's bound to be something wrong with your call to SetWaitableTimer or the pinvoke declaration. Or your error checking for the call. Post code. – Hans Passant Oct 1 '10 at 15:46
feedback

2 Answers

up vote 0 down vote accepted

Is any other software able to wake your computer on schedule? You need to find out whether the problem is with your code or with your system configuration, and running someone else's software as a test is the easiest way.

You may need to enable "Wake on Timer" support in the BIOS.

What version of Windows are you using? Windows Vista and 7 come with some tools for enabling/disabling the ability of individual components to wake the system, in order to e.g. resolve problems when a very sensitive mouse unintentionally moves enough to wake the computer. You may need to enable wake support for the HPET or RTC components.

link|improve this answer
Hi, I am using Windows 7 x64 Ultimate, and I have enabled the use of wakeup timers in the power options settings but nothing happens, I could only find one other wake up timer but it doesn't seem to be opensource. – Sandeep Bansal Oct 1 '10 at 14:54
So you followed the instructions here: support.microsoft.com/kb/973454 ? The built-in Task Schedule can wake the computer, try this (instructions for Vista but will also work on 7): winvistaclub.com/t86.html – Ben Voigt Oct 1 '10 at 15:24
feedback

Have you tried Wake On LAN (using MAC address):

namespace WakeOnLan
{
    class Program
    {
        static void Main(string[] args)
        {
            if(args.Length==1)
            {
                string bytes = args[0].Replace("-", "");
                long l = 0;
                if (bytes.Length != 12 || !long.TryParse(bytes.Substring(0, 6), NumberStyles.HexNumber, null, out l) || !long.TryParse(bytes.Substring(6), NumberStyles.HexNumber, null, out l))
                    Console.WriteLine("Invalid string");
                else
                {
                    try
                    {
                        WakeOnLan(bytes);
                        Console.WriteLine("Sent wake on lan");
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine(e.ToString());
                    }
                }
            }
            else
            {
                Console.WriteLine("WakeOnLan.exe <MAC Address>\r\nMAC address must be 6 bytes in hexadecimal format, optionally separated by hyphen.");
            }
        }

        private static void WakeOnLan(string bytesString)
        {
            List<byte> packet = new List<byte>();
            for (int i = 0; i < 6; i++)
            {
                packet.Add(byte.Parse(bytesString.Substring(i*2,2),NumberStyles.HexNumber));
            }

            byte[] mac = packet.ToArray();
            for (int i = 0; i < 15; i++)
            {
                packet.AddRange(mac);
            }
            for (int i = 0; i < 6; i++)
            {
                packet.Insert(0, 0xFF);
            }

            UdpClient client = new UdpClient();
            client.Connect(IPAddress.Broadcast, 7); //Any UDP port will work, but 7 is my lucky number ... 
            client.Send(packet.ToArray(), packet.Count); 
        }

    }
}
link|improve this answer
I was actually trying to stay away from Wake on LAN as most my users will be using a Wireless Adapter and this isn't obviously supported. – Sandeep Bansal Oct 1 '10 at 14:54
feedback

Your Answer

 
or
required, but never shown

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