How to reset the screenshot counter in Windows 8?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzling Curiosities
--
Chapters
00:00 How To Reset The Screenshot Counter In Windows 8?
00:31 Accepted Answer Score 31
01:43 Thank you
--
Full question
https://superuser.com/questions/491628/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows8 #screenshot #reset #counter
#avk47
ACCEPTED ANSWER
Score 31
This method requires registry editing, so be careful!
Run
regedit
and navigate to:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
Look for a DWORD value named
ScreenshotIndex
, which stores the next screenshot's index:To reset it, change the value back to 1
Note 1: If you already have existing screenshot files in the Screenshots
folder, they will not be overwritten even after the counter reset. Thus even after resetting the value back to 1, Screenshot (3).png
will be created in the example above (since screenshots 1 and 2 already exist). If screenshots 1 and 2 are moved/deleted however before a fresh screenshot is taken (after the reset of course), the new file will be saved as Screenshot (1).png
.
Note 2: If you want to automate the reset, use the following command:
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer /v ScreenshotIndex /t REG_DWORD /d 1 /f
You can also save the following as something like ResetScreenshotIndex.reg
:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"ScreenshotIndex"=dword:00000001