I need to know, is that possible to get a notification through email whenever my laptop is switched on or is connected to internet ?
An alternative is to get notification when set service Starts on system boot.
Need C# code for this service.
I need to know, is that possible to get a notification through email whenever my laptop is switched on or is connected to internet ?
An alternative is to get notification when set service Starts on system boot.
Need C# code for this service.
If you have a web site somewhere and access to the log files, install wget
or curl
and then run this command:
wget -q http://your.site.com/MyLaptopIsConnected
Just search the error logs for this string to see when your laptop came online. Put the command in a BAT/CMD file and tell Windows to run it once the computer starts with the scheduler.
How do I restart Mac OS X using C++ (not Objetive-C) without invoking any child processes? Don t care if it s ungraceful. system("reboot"); //Is not acceptable as it relies on invoking a process
I have a client server set up between different computers on a network using .Net Remoting in C#. The server runs in a service that starts up when the computer turns on. I want the client to be able ...
I would like to produce a popup window giving the user to ability to select yes to reboot the phone. Possible?
I ve seen lots of scripts out there for manually stopping/starting services in a list, but how can I generate that list programatically of -just- the automatic services. I want to script some reboots, ...
I m debugging a Mac OS X kernel via a remote target (target remote-kdp) when it gets into a kernel panic. I can introspect the state of the machine at the time, but if I need to restart the machine I ...
If my app needs to reboot the system to change something and I d like it to automatically continue its actions after the reboot, how can I add a key to the registry (more importantly, where in the ...
I d like to know what is the Windows API function (if any exists) that provides information about the last Windows reboot source. There are three main possible causes: The computer crashed on a blue ...
I need to know, is that possible to get a notification through email whenever my laptop is switched on or is connected to internet ? An alternative is to get notification when set service Starts on ...