Can we create a robot that can detect once a computer is online and then run some activities such as opening a web portal?

Hi everyone,

does anyone has an idea about this? :slight_smile:

1 Like

if that computer has any fixed IP address, then you can use ping command. If machine is online, you will get the response. So based on that you can do some activities.

3 Likes

Thanks Karthik, I will try this one :slight_smile:

1 Like

You can try this as well

System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()

If its true then you are online

image

InternetStatus would be a boolean

Thanks,
Prankur

4 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.