ComputerGUID Property



 
The ComputerGUID property contains the computer's globally unique identifier (GUID).


Syntax

    [str=] SiteKiosk.ComputerGUID
Possible Values
    String that retrieves the GUID of the computer.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the GUID of the computer in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.ComputerGUID);
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top