English 中文(简体)
Notification when laptop is switch on (boot)
原标题:

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.





相关问题
Restart Mac OS X ungracefully using a C++ call?

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

.Net Remoting - Reboot Server and get reboot status

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 ...

Android: popup to reboot phone

I would like to produce a popup window giving the user to ability to select yes to reboot the phone. Possible?

Checking only "Automatic" services with powershell

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, ...

Restart remote target machine with gdb

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 ...

How can I get the Windows last reboot reason

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 ...

Notification when laptop is switch on (boot)

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 ...

热门标签