You can use settings in the common-setting section to configure certain client features.

Setting Description
allowDataSharing Configures the Horizon Client data sharing feature. The value property specifies whether the feature is enabled or disabled. The editable property specifies whether users can change the Allow data sharing setting in Horizon Client. Valid values for both properties are true and false.
enableAnonymousLogin Configures the Unauthenticated Access feature. The value property specifies whether the feature is enabled or disabled. The editable property specifies whether users can change the Log in anonymously using Unauthenticated Access setting in Horizon Client. Valid values for both properties are true and false.
powerSetting Prevents the device from going to sleep in response to user inactivity in a remote session.

By default, the Chromebook goes to sleep after 10 minutes. When you configure powerSetting, the Chromebook does not go to sleep until after the last remote session ends.

The keepAwakeLevel property specifies the power policy level. You can set keepAwakeLevel to one of the following values:

  • system, which prevents the system from sleeping in response to user inactivity. This is the default value.
  • display, which prevents the display from being turned off or dimmed, or the system from sleeping, in response to user inactivity.

The following JSON configuration file example shows the common settings.

{
   "broker_list": {
      "settings": {
         "server-list": [{
            "server": "viewserver0.mydomain.com",
            "default": true,
            "description": "View Server 0", 
            "username": "User0",
            "domain": "TestDomain0"
         }],
           "common-setting": {
                 "allowDataSharing": false,
                 "enableAnonymousLogin": true, 
                 "editable":{
                    "allowDataSharing": true,
                    "enableAnonymousLogin": false
                  },
                  "powerSetting":{
                    "keepAwakeLevel":"display"
                  }
            } 
       }
   }
}