Computle Docs
  • Welcome to Computle Docs
  • Onboarding
    • Computle - End User Guide
      • iPad/Tablet
      • Network Requirements
      • Unattended Install
      • Hardware
      • End User Guide (Canary Release)
    • Administrator Guide
      • Computle Gateway for SMEs
      • Computle Device
      • Machine Portal
      • Machine Assignment
      • Billing Portal
      • Service Status
      • Virtual Machine Licensing and User Identification Requirements (Windows 11 Professional)
    • Migrating to Computle
      • GPU Analyser
  • Troubleshooting
    • Streaming Agent
      • No Username or Password Requested
      • Resolution and Quality
      • Unable To Connect
      • Unable To Login
      • DCV Server Certificate Warning
      • DCV Server License Warning
      • USB Passthrough
      • WebAuthn Redirection/FIDO Keys
    • Component Reinstallation
      • Reinstall DCV Server
      • Reinstall NVIDIA
  • Service Delivery
    • Service Delivery Architecture
      • Machine Plane
      • Telemetry and Monitoring at Computle
      • Computle Gateway
      • Network Plane
      • IDAM Providers
      • Storage Providers
      • Computle Tunnel
      • Computle Broker
    • Service Operations
      • Shared Responsibility Model
      • Security at Computle
      • Maintenance of Computle Infrastructure
  • Corporate Governance
    • Standards
      • ISO 27001 Security Controls
      • Vulnerability Disclosure Programme
    • Computle Ethos
      • Our Approach to Engineering
    • Carbon Neutrality
Powered by GitBook
On this page
  • TCP/QUIC-UDP
  • Low-Frame Rate
  • Resolution
  1. Troubleshooting
  2. Streaming Agent

Resolution and Quality

PreviousNo Username or Password RequestedNextUnable To Connect

Last updated 9 months ago

TCP/QUIC-UDP

By default, Computle uses TCP mode to transport display pixels.

You can see which mode you are using by clicking the Cog > Streaming Mode and then checking for TCP/WebSocket mode, or QUIC mode.

On connections with a latency of above 50ms, we recommend enabling UDP/QUIC mode. However, if you core switches and routers do not support Jumbo Frames, this may have a determinantal effect on performance.

To enable UDP/QUIC mode:

  • Open Regedit

  • Go to “HKEY_USERS/S-1-5-18/Software/GSettings/com/nicesoftware/dcv/connectivity”

  • Double click “enable-quic-frontend” and change value to 1.

  • Reboot Computle.

  • Within the DCV application, selected QUIC.


Low-Frame Rate

On Computle supplied images, the default framerate is set to 60fps.

This is managed via the target-fps key under:

HKEY_USERS/S-1-5-18/Software/GSettings/com/nicesoftware/dcv/display

If this value is missing, you can recreate it with the following PowerShell command:

$RegistryPath = "HKU\S-1-5-18\Software\GSettings\com\nicesoftware\dcv\display"
$Name = "target-fps"
$Value = 60

if (-not (Test-Path $RegistryPath)) {
    New-Item -Path $RegistryPath -Force
}

Set-ItemProperty -Path $RegistryPath -Name $Name -Value $Value

Resolution

Default

Computle supports quad-4K displays by default with a maximum resolution of 4096*4096 per monitor.

Ultra-Wide Support (5120x1440)

Ultra-wide monitor users may be required to amend their display configuration if they are unable to enter full screen mode. To do so, run the following commands from an elevated Command Prompt.

  1. Set enable-client-resize to 0:

dcv set-config-param --session session-id enable-client-resize=0
  1. Set a custom layout for the current session:

dcv set-display-layout --session session-id 2560x1440+0+0,2560x1440+2560+0
  1. Disconnect from Computle.

  2. Connect to the session, switch to full screen, and check if the layout is correct.

  3. If the layout is satisfactory, make it permanent:

dcv set-config-param --session session-id console-session-default-layout=2560x1440+0+0,2560x1440+2560+0