Как сбросить счетчик скриншотов в Windows 8?

2103
Karan

В Windows 8 Win+ PrtScrавтоматически сохранит последовательно пронумерованный снимок экрана в
%UserProfile%\Pictures\Screenshots. Имена файлов имеют форму
Screenshot (<index>).png. Однако даже если вы переместите / удалите существующие снимки экрана, индекс / счетчик не сбрасывается. Итак, как вы собираетесь сбросить его?

Win8 Скриншоты

23
Просто вопрос: зачем мне это действительно нужно? Matsemann 11 лет назад 0
@ Мацеманн: Никто не заставляет вас использовать его! :) Это просто то, что не раскрывается через пользовательский интерфейс и может пригодиться *, если * вы хотите начать заново и не хотите использовать массовое переименование для переименования файлов. Karan 11 лет назад 8

1 ответ на вопрос

32
Karan

This method requires registry editing, so be careful!

  1. Run regedit and navigate to:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer

  2. Look for a DWORD value named ScreenshotIndex, which stores the next screenshot's index:

    Win8 Screenshot Index

  3. 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 
2-е решение работает для меня .. mcacorner 9 лет назад 0

Похожие вопросы