This section describes custom settings for Horizon Client for iOS that you can configure in Workspace ONE UEM.
- In the Configuration Key text box, enter settings
- In the Value Type drop-down menu, select String.
- Enter the appropriate camera and custom settings in the Configuration Value text box in JSON format. Supported camera settings are listed in the table below.
Setting | Description | Valid Values |
---|---|---|
camera_position | Specifies camera position. | front | rear |
video_ quality | Sets video quality | default | high | medium | low |
Supported custom settings are listed in the table below.
Setting | Description | Valid Values |
---|---|---|
enable_dpi_sync | Displays high resolution mode. | true | false |
windows_native_touch_gestures | Enables touch redirection. | true | false |
full_screen_touchpad_mode | Use full-screen virtual touchpad. | true | false |
enable_keyboard_auto_popup | Enables keyboard auto popup. | true | false |
enable_keyboard_auto_dismiss | Enables keyboard auto dismiss. | true | false |
allow_data_sharing | Allows data sharing. | true | false |
file_sharing | Share access to local storage with client drive redirection. | true | false |
security_mode | Specifies security settings: verify - never connect to untusted servers warn - display warning before connecting to untrusted servers don't verify - do not verify server certificates |
verify | warn |don't verify |
ssl_tls_v1_1 | Enables TLS v1.1. | true | false |
ssl_tls_v1_2 | Enables TLS v1.2. | true | false |
ssl_cipher_string | Cipher control string. | SSL_cipher_string |
enable_h264 | Enables H.264 decoding. | true | false |
cellular_data_warning | Cellular data warning. | true | false |
keep_screen_alive | Keeps the screen alive. | true | false |
Example JSON
{ "camera": { "camera_position":"rear", "video_quality":"medium" }, "custom_settings": { "enable_dpi_sync":true, "windows_native_touch_gestures":true, "full_screen_touchpad_mode":true, "enable_keyboard_auto_popup":true, "enable_keyboard_auto_dismiss":false, "allow_data_sharing":true, "file_sharing":true, "security_mode":"verify", "ssl_tls_v1_1":true, "ssl_tls_v1_2":true, "ssl_cipher_string":"!aNULL:kECDH+AESGCM:ECDH+AESGCM:RSA+AESGCM:kECDH+AES:ECDH+AES:RSA+AES", "enable_h264":false, "cellular_data_warning":true, "keep_screen_alive":true } }