PDC. - Private Desktop Commands

<< Click to Display Table of Contents >>

Navigation:  3. Script Language > PDC. - Private Desktop Commands >

PDC. - Private Desktop Commands

HDC. - Hidden Desktop Control

Previous Top Next


MiniRobotLanguage (MRL)

 

HDC. - Hidden Desktop Control

Enable or Disable Hidden Desktop Access

 

 

Intention

 

The HDC.-Command can be used to manually enable or disable the possibility to switch to the "Hidden Desktop".

The "Hidden Desktop" is the System-Desktop. Its not a "private Desktop".

 

' This will enable the Access to the Hidden Desktop

HDC.1

 

' This will disbale the possibility to access the Hidden Desktop

' Robot Executables can still work on the Hidden Desktop.

HDC.0

 

 

 

Syntax

 

 

HDC.[P1]

 

 

Parameter Explanation

 

P1 - (optional) can be one of the following options:

 

e - "e"nable Hidden Desktop Access. You can also write "1" instead.

 

d - "d"isable Hidden Desktop Access. You can also write "0" instead.

    Use this Option in your Client-Script to prevent the User from being able

    to enter the "Hidden Desktop".

 

r - "r"estart. This is the same like "e" but stronger but can be slow!

    Internally the "UI0Detect" service is restarted. You can also write "2" instead.

 

f - "f"orbid. This will totaly disable the option to use the Hidden Desktop.  

    We recommend to not use this option as it can also influence Robot-Scripts.

 

 

 

Example

 

HDC.disable

HDC.d

HDC.0

 

or

 

HDC.e

HDC.1

HDC.enable

 

 

 

Remarks

 

Internally it will start or stop the "UI0Detect" Service.

 

 

Limitations:

 

 

 

See also:

 

EXV. - Execute via System-Desktop

1.0.1 '#EXV: - Execute on Hidden Desktop