Windows Registry Key for Default Download Location
This article explains which Windows Registry keys control the default file download location used by built-in system utilities, File Explorer, and native tools. You will learn the exact Registry paths, the specific Globally Unique Identifiers (GUIDs) associated with the Downloads directory, and the step-by-step instructions to modify these settings directly in the Registry Editor.
Primary Registry Key for the Downloads Directory
In Windows, the standard user folder locations—including the default Downloads folder—are managed under the User Shell Folders registry key.
- Registry Path:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
Within this key, the system uses specific GUID string values to define the path for the Downloads folder:
{374DE290-123F-4565-9164-39C4925E467B}— The primary legacy GUID representing the user’s default Downloads directory.{7D83EE9B-2244-4E70-B1F5-54B4B9C49615}— The modern GUID introduced in newer Windows versions to handle the personal Downloads library.
The default value data assigned to these entries is usually
%USERPROFILE%\Downloads.
Legacy System Tools and Internet Components
For older built-in utilities and components relying on legacy Windows Internet settings, the download path is controlled by a separate key:
- Registry Path:
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main - Value Name:
Default Download Directory - Value Type:
REG_SZ(String Value)
If this value does not exist, legacy utilities fall back to the path
defined in User Shell Folders.
How to Change the Default Download Directory in Regedit
- Press Windows Key + R, type
regedit, and press Enter to open the Registry Editor. - Navigate to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders - Locate the value named
{374DE290-123F-4565-9164-39C4925E467B}(and{7D83EE9B-2244-4E70-B1F5-54B4B9C49615}if present). - Double-click the entry and change the Value data
field to your preferred folder path (for example,
D:\Downloads). - Click OK.
- Restart the
explorer.exeprocess via Task Manager or restart your computer for the changes to apply across all system tools.