GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators.Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

Select a product
  • Select a category.

Disable telemetry

Disable telemetry data collection

Registry Information

VendorDevolutions
ProductDevolutions
CategoryDevolutions › Remote Desktop Manager › General
Applies toComputer & User Configuration
Supported onAt least Microsoft Windows Vista
Registry Key[HKLM|HKCU]SOFTWAREPoliciesDevolutionsRemoteDesktopManager
Value NameDisableAnalytics
TypeREG_DWORD
Enabled value1
Disabled value0

Registry File (.reg)

Windows Registry Editor Version 5.00
; Note: this policy also applies under HKEY_CURRENT_USER

; Enable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesDevolutionsRemoteDesktopManager]
"DisableAnalytics"=dword:00000001

; Disable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesDevolutionsRemoteDesktopManager]
"DisableAnalytics"=dword:00000000

PowerShell

# Enable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesDevolutionsRemoteDesktopManager" -Name "DisableAnalytics" -Value 1 -Type DWord

# Disable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesDevolutionsRemoteDesktopManager" -Name "DisableAnalytics" -Value 0 -Type DWord