How To Restart Numbering Screenshots In Windows 10

Windows 10 is surprisingly loyal to its screenshot numbers. Delete every image in the Screenshots folder, empty the Recycle Bin, restart the computer, and Windows may still cheerfully create Screenshot (847).png as though the previous 846 files are treasured family memories.

The reason is simple: Windows does not calculate the next screenshot number only by looking at the files currently in the folder. It also maintains a screenshot counter in the Windows Registry. To restart screenshot numbering at Screenshot (1).png, you need to prepare the destination folder and reset a Registry value called ScreenshotIndex.

This guide explains how to reset the screenshot counter safely, use a one-line command as a faster alternative, fix common problems, and choose a custom starting number when beginning a new project.

Quick Answer: How to Reset the Windows 10 Screenshot Counter

  1. Move or rename the images in your Pictures\Screenshots folder.
  2. Press Windows + R, type regedit, and press Enter.
  3. Open HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer.
  4. Find and double-click ScreenshotIndex.
  5. Select Decimal and change the value to 1.
  6. Restart File Explorer or restart the computer.
  7. Press Windows + Print Screen to test the new numbering.

The automatic full-screen shortcut normally saves captures in the Pictures folder under Screenshots. On keyboards without a dedicated Print Screen key, a manufacturer-specific Fn combination may be required.

Why Screenshot Numbering Does Not Restart Automatically

When you press Windows + Print Screen, Windows captures the entire display and automatically saves a PNG file. The default filenames follow a sequence such as:

  • Screenshot (1).png
  • Screenshot (2).png
  • Screenshot (3).png

Each successful capture increases an internal counter. Deleting the images removes the files, but it does not necessarily reset that counter. As a result, the next capture may continue at Screenshot (4), Screenshot (104), or Screenshot (9001). Windows is organized, but sometimes it organizes things according to rules nobody remembers agreeing to.

The current number is stored for your Windows user account in the ScreenshotIndex DWORD value under the Explorer Registry key. Resetting that value tells Windows which number to try next. To guarantee a clean restart at one, the original numbered files should first be moved, renamed, or deleted so Windows does not encounter duplicate filenames.

Which screenshots are affected?

This procedure primarily affects screenshots automatically saved by the Windows + Print Screen shortcut. It does not control every image captured by every Windows tool.

For example, pressing Print Screen by itself normally copies the desktop to the clipboard. Pressing Alt + Print Screen copies the active window. The Windows + Shift + S shortcut opens the Windows 10 snipping interface and usually places the selected area on the clipboard so it can be edited or manually saved. Those methods do not necessarily use the same automatic numbered-file sequence.

Before Editing the Registry

The Registry is a database containing important Windows and application settings. The change in this guide is small and limited to the current user’s Explorer settings, but typing in the wrong location can create unrelated problems.

Back up your screenshots

Open File Explorer and check these likely locations:

  • C:\Users\YourName\Pictures\Screenshots
  • C:\Users\YourName\OneDrive\Pictures\Screenshots

Create a temporary folder such as Screenshot Archive and move the existing captures into it. Renaming the existing files also works, but moving them is generally faster when the folder contains hundreds of images.

Back up the relevant Registry key

  1. Open Registry Editor.
  2. Select the Explorer key used in the instructions below.
  3. Click File and choose Export.
  4. Select Selected branch if that option is available.
  5. Save the backup with a clear name, such as Explorer-Registry-Backup.reg.

Microsoft’s Registry backup guidance recommends selecting the relevant key, using File > Export, and saving the resulting registration file somewhere you can find it later.

Method 1: Restart Screenshot Numbering With Registry Editor

This is the most visual method and is suitable for users who prefer clicking through Windows instead of entering commands.

Step 1: Empty or relocate the Screenshots folder

Press Windows + E to open File Explorer. Select Pictures in the navigation pane and open Screenshots.

Move the existing images to another folder. Do not permanently delete important captures merely to make Windows feel young again. An archive folder works perfectly well.

Step 2: Open Registry Editor

  1. Press Windows + R.
  2. Type regedit.
  3. Press Enter or click OK.
  4. Approve the User Account Control prompt if one appears.

Step 3: Navigate to the Explorer key

Use the folders in the left pane or paste the following path into the Registry Editor address bar:

Make sure you are editing HKEY_CURRENT_USER, not a similar-looking location under HKEY_LOCAL_MACHINE.

Step 4: Change ScreenshotIndex to 1

  1. Look in the right pane for ScreenshotIndex.
  2. Double-click it.
  3. Select Decimal.
  4. Enter 1 in the Value data box.
  5. Click OK.

Selecting Decimal is not technically magic; it simply makes the number easier to understand. Setting the value to one instructs Windows to use one as the next screenshot index, provided that filename is available.

Step 5: Apply the change

Close Registry Editor. In many installations, the new value is recognized immediately. When the number does not change, restart Windows Explorer:

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Find Windows Explorer on the Processes tab.
  3. Right-click it and choose Restart.

A full computer restart is the reliable fallback. Restarting is preferable to shutting down and turning the PC back on when Fast Startup is enabled, because a restart performs a more complete reload of the active Windows session.

Step 6: Test the result

Press Windows + Print Screen. On some laptops, use Fn + Windows + Print Screen. Open the Screenshots folder and confirm that the new file is named:

What to Do If ScreenshotIndex Is Missing

Some users will not see a value named ScreenshotIndex. This can happen after a system reset, a profile change, or an issue with the screenshot save configuration.

You can create the value manually:

  1. Right-click an empty area in the right pane of the Explorer Registry key.
  2. Select New > DWORD (32-bit) Value.
  3. Name the new value ScreenshotIndex.
  4. Double-click it.
  5. Select Decimal and enter 1.
  6. Restart Explorer or restart Windows.

Use a DWORD (32-bit) value even on a 64-bit Windows 10 computer. The label describes the Registry data type, not whether your operating system is 32-bit or 64-bit.

Method 2: Reset Screenshot Numbering With One Command

You can update the same Registry value from Command Prompt, PowerShell, or Windows Terminal. This is faster when you manage several accounts or reset screenshot numbering regularly.

First, move the existing screenshots out of the destination folder. Then open Command Prompt or PowerShell and run:

The command performs the following actions:

  • HKCU targets the current user account.
  • /v ScreenshotIndex identifies the value to edit.
  • /t REG_DWORD specifies the value type.
  • /d 1 sets the next index to one.
  • /f applies the change without asking for confirmation.

Restart Windows Explorer or the computer, and then take a test capture. This command-based approach is also documented in long-running Windows support communities as an alternative to editing the value manually.

Method 3: Create a Reusable REG File

People who reset the screenshot sequence for recurring projects can create a small Registry file. It turns the process into a double-click operation, although the Screenshots folder still needs to be prepared first.

  1. Open Notepad.
  2. Paste the text below.
  3. Choose File > Save As.
  4. Set Save as type to All Files.
  5. Name the file Reset-Screenshot-Number.reg.

Double-click the file and approve the confirmation prompts. Only merge REG files you created yourself or obtained from a source you trust. A mysterious Registry attachment from a stranger is not a productivity shortcut; it is an audition for an unpleasant afternoon.

How to Start Screenshot Numbering at a Custom Number

You do not have to restart at one. Change ScreenshotIndex</code to any positive number you want Windows to try next.

For example, suppose a documentation project already contains screenshots 1 through 250 on another computer. Set the value to 251, select Decimal, and make sure Screenshot (251).png is not already present in the destination folder.

A custom number is useful when:

  • Continuing a screenshot collection from another PC.
  • Separating project phases by number ranges.
  • Restoring files from an archive without creating duplicate names.
  • Maintaining an established documentation sequence.

Troubleshooting Screenshot Numbering Problems

The next screenshot is not Screenshot (1).png

Look for an existing file with that name. Windows will not deliberately overwrite an existing image. Search the active Screenshots folder for Screenshot (1).png, including hidden or cloud-synced copies.

The screenshot is being saved to OneDrive

Your Pictures folder may be backed up or redirected through OneDrive. Check the OneDrive Pictures folder and look at the address bar in File Explorer to identify the real save location. OneDrive can sync Windows folders and may place captures in its own Pictures\Screenshots path.

Windows + Print Screen does nothing

Try including the Fn key. Laptop manufacturers often combine Print Screen with another function key. It may be labeled PrtSc, PrtScn, PrntScrn, or something equally committed to saving keyboard space.

Also verify that the Windows key works and that another screenshot application has not taken control of the shortcut.

The image is copied but not saved

You may be pressing Print Screen alone. That shortcut usually copies the desktop to the clipboard. Use Windows + Print Screen for an automatically saved PNG file, or paste the clipboard image into Paint with Ctrl + V. Dell, Microsoft, HP, and other Windows documentation distinguish between clipboard-only Print Screen captures and automatically saved Windows-key combinations.

The counter changes back after synchronization

Temporarily pause OneDrive synchronization, move the old files, reset ScreenshotIndex, take a test screenshot, and resume syncing. Confirm that another device is not restoring conflicting files into the same folder.

The number still does not update

Confirm that you edited the value in the correct user account. The HKEY_CURRENT_USER branch applies only to the currently signed-in Windows profile. Then restart the computer rather than relying only on closing Registry Editor.

Better Ways to Organize Screenshots

Resetting the counter creates a tidy folder, but default filenames reveal almost nothing about the images. Screenshot (27) could be an error message, a payment receipt, a game score, or a surprisingly judgmental email from a printer.

Rename important captures immediately

Replace generic names with descriptive filenames such as:

  • checkout-error-mobile.png
  • router-settings-before-update.png
  • homepage-layout-july-2026.png

Use project folders

Create separate folders for work, technical support, receipts, tutorials, and personal captures. Reset the counter only when a clean numerical sequence genuinely improves the workflow.

Use dates in filenames

A format such as 2026-07-19-login-error.png sorts naturally and makes older images easier to locate.

Use the right capture tool

Use Windows + Print Screen for instant full-screen files, Windows + Shift + S for selected regions, Alt + Print Screen for an active window, and Xbox Game Bar for supported game or application captures. Windows 10 provides several capture methods, but they save files differently and do not all use the ScreenshotIndex counter.

Frequently Asked Questions

Will resetting ScreenshotIndex delete my screenshots?

No. Changing the Registry value does not delete image files. Moving or deleting old screenshots is a separate step used to prevent duplicate filenames.

Can I set the next screenshot number to zero?

You can enter different DWORD values, but starting with one is the conventional and least confusing choice. There is little practical benefit to creating Screenshot (0).png.

Does the method work on a 64-bit PC?

Yes. Create or edit the DWORD (32-bit) value named ScreenshotIndex even when Windows 10 itself is 64-bit.

Does it reset screenshots created by Snip & Sketch?

Not necessarily. Snip & Sketch commonly sends a capture to the clipboard and lets you choose the filename when saving. The Registry counter discussed here is associated with automatically numbered Windows screenshots.

Can I undo the change?

Yes. Restore the exported Registry backup or change ScreenshotIndex back to the number you want. The operation does not permanently lock Windows into a numbering sequence.

Practical Experiences With Resetting Windows 10 Screenshot Numbers

In real-world troubleshooting, the Registry edit is usually the easiest part. Most failed resets are caused by the folder surrounding it. A user changes ScreenshotIndex to one, takes a new capture, and receives Screenshot (146).png. The Registry is immediately accused of betrayal. A closer look often reveals Screenshot (1).png through Screenshot (145).png sitting in a OneDrive-backed folder rather than the local Pictures folder the user emptied.

The useful lesson is to identify the active destination before changing anything. Press Windows + Print Screen once, sort the folder by Date modified, and locate the newest file. Its path tells you which Screenshots folder Windows is actually using. Once that folder is known, move its contents, reset the counter, and test again.

Experience 1: The “Empty” Folder That Was Not the Right Folder

A common setup has both Pictures\Screenshots and OneDrive\Pictures\Screenshots. The user cleans the local folder while Windows continues saving to OneDrive. Everything appears correct until the test capture arrives with the old number.

The fix is not another Registry edit. It is locating the newest screenshot, confirming the address bar, and preparing the folder Windows is truly using. This is why one test capture before beginning can save fifteen minutes of clicking and several dramatic sighs.

Experience 2: A Laptop With a Shared Print Screen Key

Another frequent problem occurs on compact keyboards. The Registry value has been reset correctly, but pressing Windows + Print Screen produces no file. On many laptops, Print Screen shares a key with Insert, F10, or another function. The required shortcut may therefore be Fn + Windows + Print Screen.

The screen may briefly dim when the automatic capture succeeds. If nothing happens, test the Print Screen key by pressing it alone and pasting into Paint. When the image appears in Paint, the key works; the issue is probably the shortcut combination rather than the screenshot counter.

Experience 3: Existing Files Create an Unexpected Jump

Suppose ScreenshotIndex is set to one, but Screenshot (1).png and Screenshot (2).png are still in the folder. Windows must avoid overwriting them. Depending on the folder contents and configuration, the next capture may use another available number or continue farther into the existing sequence.

Moving every generically named screenshot into an archive folder removes the ambiguity. After the reset, new captures can begin cleanly at one while the old collection remains safe. This approach is much better than permanently deleting valuable documentation merely to improve the aesthetics of a filename.

Experience 4: Resetting for Documentation Projects

The counter reset is especially helpful when producing tutorials, software manuals, quality-assurance reports, or client instructions. Beginning each project at Screenshot (1) makes the raw capture order easy to follow before descriptive filenames are assigned.

However, the best long-term workflow is to treat the numbers as temporary. After capturing a group of images, rename them according to the step or feature they illustrate. A filename such as step-04-open-registry-editor.png remains meaningful after the image is copied into a document, shared with a coworker, or discovered six months later during the traditional “What on earth was this file for?” investigation.

Experience 5: The One-Line Command Saves Repeated Work

For users who frequently start new screenshot batches, the command-line method is faster than opening Registry Editor each time. A small REG file is even more convenient. The important habit is to inspect and archive the destination folder first. Automating the Registry change without managing existing filenames merely automates half the job, which is an impressively efficient way to remain confused.

Overall, restarting screenshot numbering in Windows 10 is reliable when three elements agree: the active save folder contains no conflicting filenames, ScreenshotIndex contains the intended starting number, and Windows Explorer has reloaded the updated setting. Check those three items in that order, and the solution is usually quick and pleasantly uneventful.

Conclusion

To restart numbering screenshots in Windows 10, move the existing numbered captures, open the current user’s Explorer Registry key, and set ScreenshotIndex to one. Restart Windows Explorer or the computer, press Windows + Print Screen, and verify that the new file begins with Screenshot (1).png.

If the reset does not work, the most likely causes are an existing duplicate filename, a OneDrive-redirected Pictures folder, the wrong keyboard shortcut, or a Registry value edited under the wrong user account. Check those possibilities before making additional system changes.

Note: Microsoft ended standard support for Windows 10 on October 14, 2025. Windows 10 computers can continue to operate, and eligible devices may use Extended Security Updates for a limited period, but Microsoft recommends moving to a supported version of Windows for ongoing protection.