StartSettings Object



 
The StartSettings object allows you to modify the SiteKiosk start settings.


Members Table

    The following table lists the members provided by the StartSettings object.

    Members
    Properties Description
    AutoLogon If the windows logon is done automatically.
    AutoLogonPassword Password for automatic windows logon.
    AutoLogonUser Username for automatic windows logon.
    ConfigPath Absolute path of the currently used configuration file.
    ForceStartSettings If start settings dialog is shown when SiteKiosk is started.
    KeyBlockingOnStartup If keys are blocked while starting Windows.
    ResetStartSettings If the start settings should be reset.
    RunMode The way SiteKiosk is started.
    Methods Description
    StartExplorer Starts the windows explorer.

Remarks
    This object is available through the main object SiteKiosk. Use the StartSettings object to activate, deactivate or modify the start settings dialog that appears directly when SiteKiosk is started. This is very useful when SiteKiosk is started by the restricted user because then, the start settings dialog is normally not shown.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example determines if the windows logon will be done automatically when the computer is started.

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

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

Back to top