Tests whether or not a machine has been connected to the Agent with the Connect function and has not been disconnected by the Disconnect function.
HMACHINE target_machineA STRING sTargetA = "sunfish" // one target computer STRING sTargetB = "moonray" // another target computer target_machineA = Connect(sTargetA) Print (IsConnected (sTargetA)) // prints: TRUE Print (IsConnected (target_machineA)) // prints: TRUE Print (IsConnected (sTargetB)) // prints:FALSE