GetComputers Method



 
The GetComputers method returns a range of computers.


Syntax

    [obj=] SiteCafe.Server.Computers.GetComputers(start, maxCount)
    
Parameters
    start Long value that specifies the start computer.
    maxCount Long value that specifies the maximum number of computers.
Return Value
    Returns a ComputersCol collection containing the specified computers.
Remarks
    None.
Examples
    The following example displays the name of the first computer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    computers = SiteCafe.Server.Computers.GetComputers(1, 10);
    alert(computers.Item(1).Name);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top