Select a product
- Select a category.
Dashboard hide all task panels
Hide the task panel located in the dashboard
Registry Information
| Vendor | Devolutions |
|---|---|
| Product | Devolutions |
| Category | Devolutions › Remote Desktop Manager › User Interface |
| Applies to | Computer & User Configuration |
| Supported on | At least Microsoft Windows Vista |
| Registry Key | [HKLM|HKCU]SOFTWAREPoliciesDevolutionsRemoteDesktopManager |
| Value Name | DashboardHideAllTaskPanels |
| 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]
"DashboardHideAllTaskPanels"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesDevolutionsRemoteDesktopManager]
"DashboardHideAllTaskPanels"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesDevolutionsRemoteDesktopManager" -Name "DashboardHideAllTaskPanels" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesDevolutionsRemoteDesktopManager" -Name "DashboardHideAllTaskPanels" -Value 0 -Type DWord