AP WOW Wake On Wan : Wake Up Your Computer

WOW
AP WOW Wake On Wan is useful program that allows you to send packets to a computer in order to switch it on .

How To Use?
  1. Click Enable WOW to enable wake on wan.
  2. Inset the IP address of the computer that you want to switch on.
  3. Insert the MAC address of the computer that you want to switch on.
  4. Insert the default subnet of the computer that you want to switch on.
  5. Insert the Port that you have forwarded to receive the packets.
  6. Click Start (WOW) to send a packet to the computer that you want to switch on.
Requirements
  • Internet Connection
  • .NET Framework 4.0
  • Administrator Privilege
Screenshot
AP WOW WAKE ON WAN
 Working Example



How To Get Local IP In C#

this is a simple code to get the local ip on c# first add imports system.net; namespace and add this sub

//Author : Mohamed Shimran
//Blog : http://www.ultimateprogrammingtutorials.blogspot.com

   public string GetIp()
        {
            System.Net.IPAddress[] IP = System.Net.Dns.GetHostAddresses(System.Net.Dns.GetHostName());
            for (int n = 0; n < IP.Length; n++)
            {
                return IP[n].ToString();
            }

        }
now you can add this code to a click event or any other events to get the ip address