Select a product
- Select a category.
Disable add-on (deprecated)
Disable the add-on creation and the add-on manager. Deprecated, use DisableAddOnEntries and DisableAddOnManager instead
Registry Information
| Vendor | Devolutions |
|---|---|
| Product | Devolutions |
| Category | Devolutions › Remote Desktop Manager › Sessions |
| Applies to | Computer & User Configuration |
| Supported on | At least Microsoft Windows Vista |
| Registry Key | [HKLM|HKCU]SOFTWAREPoliciesDevolutionsRemoteDesktopManager |
| Value Name | DisableAddOn |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Note: this policy also applies under HKEY_CURRENT_USER
; Enable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesDevolutionsRemoteDesktopManager]
"DisableAddOn"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesDevolutionsRemoteDesktopManager]
"DisableAddOn"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesDevolutionsRemoteDesktopManager" -Name "DisableAddOn" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesDevolutionsRemoteDesktopManager" -Name "DisableAddOn" -Value 0 -Type DWord