AdminFunctions Object



 
The AdminFunctions object provides administrative functions.


Members Table

Remarks
    This object is only available in the escape menu.

    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 blocks window management temporarily in oder to start the windows explorer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    AdminFunctions.BlockWindowManagement();
    SiteKiosk.ExternalApps.RunElevated('C:\WINDOWS\explorer.exe')
    document.onclose = function() {
    	AdminFunctions.UnblockWindowManagement();
    }
    </SCRIPT>

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

Back to top