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.

Hide Devolutions Send tool

Hide Devolutions Send feature in the Main Ribbon Tools section.

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 NameDisableDevolutionsSendTool
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]
"DisableDevolutionsSendTool"=dword:00000001

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

PowerShell

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

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