How to Change Windows 11 Screenshots Folder Location
The default location of the screenshots folder in Windows 11 determines where your computer saves every image you capture using the Win+PrtSc shortcut. Windows automatically places these pictures inside the Pictures\Screenshots folder on your main C: drive, which can quickly fill up your storage space.
Relocating this folder to a secondary drive, an external hard drive, or a cloud sync folder keeps your main drive free and backs up your pictures automatically. Changing the save location takes just a few clicks through the folder properties menu, and you can move your files back to the original spot whenever you want.
Right-click your Screenshots folder in File Explorer , select Properties, open the Location tab, and click Move to choose a new destination folder. Click Apply, then click Yes to move your existing images to the new location so future screen captures save there automatically.
Before You Start Moving Files
You need administrative privileges on your computer to handle some of these changes, though most users can complete the basic steps on any Windows 11 Home or Pro edition. Take a quick moment to back up any critical images before you start shifting folders around.
Method 1Use File Explorer to Move Your Screenshots
Using File Explorer is the easiest way to change your screenshots folder location in Windows 11 without any technical tools. You just need to open your user profile, right-click the Pictures folder, open its properties, and use the location tab to move the folder to a new drive or custom folder on your computer.
- Open File Explorer : Press the
Win + Ekeys on your keyboard at the same time, or click the yellow folder icon sitting on your taskbar . - Navigate to your Pictures folder: Click on the Pictures shortcut in the left-hand sidebar of File Explorer . Look for the folder named
Screenshotsinside. - Open the folder properties: Right-click the
Screenshotsfolder and select Properties from the menu that pops up. - Access the Location tab: Click on the Location tab near the top of the properties window, then click the Move… button.
- Choose your new destination: Browse to your preferred new folder—such as a dedicated folder on your
D:drive, inside your OneDrive folder, or on a network path—and click Select Folder. - Apply the changes: Click the Apply button. Windows will ask if you want to move all your existing screenshots to the new location. Click Yes so your old pictures travel along with your new ones.
- Confirm the new path: Click OK to close the window. Every future screenshot you take will land directly in your new destination.
Method 2Put Your Screenshots Back Where They Started
Restoring your default screenshots folder in Windows 11 takes just a few clicks if you want your pictures to save back in the normal Pictures folder. You simply open the properties of your current screenshot folder, click the location tab, and select the restore default button to send it right back to the original spot.
- Open folder properties again: Open File Explorer, find your current screenshot folder wherever you moved it, right-click it, and choose Properties.
- Head to the Location tab: Click the Location tab just like you did when moving it.
- Restore the original path: Click the Restore Default button. Windows will automatically repopulate the original default folder path.
- Finalize the reset: Click Apply, then click Yes if Windows asks whether you want to move your existing screenshots back to the original folder. Click OK to finish up.
Method 3Fix Broken Paths Using the Registry Editor
Fixing a broken screenshots folder path in Windows 11 can be done manually by editing the system registry if File Explorer stops working. You just open the registry editor, find the screenshot path key in the user profile settings, and update the text string to match the exact folder path where you want your images to save.
- Open the Run command box: Press the
Win + Rkeys together on your keyboard. - Launch the Registry Editor: Type
regeditinto the box and press Enter. Click Yes if the security prompt asks for permission to make changes. - Navigate to the correct key: Copy and paste this exact address into the address bar at the top of the Registry Editor, then press Enter:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders - Find the screenshot identifier: Look through the list on the right side for a specific long code called a GUID (Global Unique Identifier) that looks like this:
{B7BEDE81-DF94-4682-A7D8-57A52620B86F}. Double-click it. - Modify the path: In the value data box, delete whatever is currently there and type in your custom folder path—for example,
D:\Screenshots. Click OK. - Restart Windows Explorer: If the change does not happen right away, press
Ctrl + Shift + Escto open Task Manager, find Windows Explorer in the list, right-click it, and select Restart.
Method 4Automate the Process Using PowerShell
Automating the screenshots folder location in Windows 11 lets you update the save path quickly using a short command in PowerShell. You simply open the terminal as an administrator, enter a command to update the user shell folders path, and restart your computer to apply the new screenshot save location.
- Open PowerShell as Administrator: Press
Win + Xon your keyboard, then select Terminal (Admin) or PowerShell (Admin) from the menu. - Set your custom path variable: Type the following command, replacing the drive path with your desired folder, and press Enter:
$ScreenshotsPath = "D:\Screenshots" - Create the folder if it is missing: Run this command to make sure the folder actually exists on your drive:
New-Item -Path $ScreenshotsPath -ItemType Directory -Force - Update the registry path: Run this command to point Windows to your new folder:
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" -Name "{B7BEDE81-DF94-4682-A7D8-57A52620B86F}" -Value $ScreenshotsPath - Restart the interface: Force File Explorer to reload its settings by running this final command:
Stop-Process -Name explorer -Force
Summary
Changing the default screenshots folder location in Windows 11 helps you save space on your main hard drive and keeps your image files organized. You can easily move the folder using File Explorer, reset it back to normal when needed, fix broken paths in the registry, or use a quick script to update the settings.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!