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 CyberArk password retrieval

Disable retrieval of passwords from CyberArk accounts

Registry Information

VendorDevolutions
ProductDevolutions
CategoryDevolutions › Remote Desktop Manager › Security
Applies toComputer & User Configuration
Supported onAt least Microsoft Windows Vista
Registry Key[HKLM|HKCU]SOFTWAREPoliciesDevolutionsRemoteDesktopManager
Value NameDisableCyberArkPasswordRetrieval
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]
"DisableCyberArkPasswordRetrieval"=dword:00000001

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

PowerShell

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

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