A SERVICE OF

logo

ZENworks® ESM 3.5 Administrator’s Manual 165
Action.Trace("IP = " & adp.IP)
Action.Trace("MAC = " & adp.MAC)
Action.Trace("MaxSpeed = " & CLng(adp.MaxSpeed))
Action.Trace("Name = " & adp.Name)
Action.Trace("SubNetMask = " & adp.SubNetMask)
Action.Trace("Type = " & adp.Type)
end if
Details:
This script will get a list of adapters, the length of the list (number of adapters) and enumerate the
properties of the first index in the list.
GetCheckinTime
JScript
var ret;
ret = Query.GetCheckinTime();
Action.Trace("LastCheckIn = " + ret);
VBScript
dim ret
ret = Query.GetCheckinTime()
Action.Trace("LastCheckIn = " & ret)
GetLocationMatchData
LocationMatchCount
JScript
var envdata;
var envdatalength;