HKCU:\Control Panel\Desktop\DragFullWindows
The `HKCU:\Control Panel\Desktop\DragFullWindows` is a registry key in Windows operating systems. This key is part of the HKEY_CURRENT_USER (HKCU) hive, which stores settings and configurations specific to the currently logged-in user.
- Purpose
The `DragFullWindows` setting determines whether the contents of a window are displayed while the window is being dragged or resized.
- Values
- **1**: This value enables the feature, showing the full content of the window while dragging.
- **0**: This value disables the feature, showing only the outline of the window while dragging.
- Example Usage
To modify this setting, you can use the Registry Editor or a PowerShell script. Here is an example using PowerShell:
```powershell Set-ItemProperty -Path 'HKCU:\Control Panel\Desktop' -Name 'DragFullWindows' -Value 1 ```
This command sets the `DragFullWindows` value to 1, enabling the full window content display while dragging. To apply the change, you may need to log out and back in or restart the computer.