Skip to content

kame404/Screenshot-Index-Updater

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Screenshot Index Updater VBScript

A simple VBScript to update the Screenshot Index value in the Windows Registry.

MainWindow

Dialog

What is Screenshot Index

The Screenshot Index is a value stored in the Windows Registry that is used to keep track of the next number to use when naming screenshots taken using the Print Screen. This value is stored in the registry key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ScreenshotIndex.

Usage

  1. Download the UpdateScreenshotIndex.vbs file.
  2. Double-click the file to run it.
  3. Enter the new value for the Screenshot Index.
  4. The script will update the Screenshot Index value in the Windows Registry.

Note This script is designed to run on Windows operating systems and requires administrative privileges to modify the Windows Registry.

FlowChart

graph TB
A(Get current value of ScreenshotIndex) --> B[Input new value for ScreenshotIndex]
B --> |OK| C{Is new value a number?}
C --> |Yes| D[Is new value between 0 and 9999999?]
D --> |Yes| E[Update ScreenshotIndex to new value]
D --> |No| F(Show Invalid input ScreenshotIndex value must be a number.)
C --> |No| F
E --> G(Show ScreenshotIndex value has been updated.)
B --> |Cancel| H(No update made.)

Script

Option Explicit

Dim regKey, value, newValue
Const HKEY_CURRENT_USER = &H80000001

Set regKey = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
regKey.GetDWORDValue HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Explorer", "ScreenshotIndex", value

newValue = InputBox("Current ScreenshotIndex value is " & value & ". Please enter the new value:", "Update ScreenshotIndex", value)

If Not IsNull(newValue) And newValue <> "" Then
  If IsNumeric(newValue) Then
    If CLng(newValue) >= 0 And CLng(newValue) <= 9999999 Then
      regKey.SetDWORDValue HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Explorer", "ScreenshotIndex", CLng(newValue)
      MsgBox "ScreenshotIndex value has been updated from " & value & " to " & newValue & "."
    Else
      MsgBox "Invalid input. ScreenshotIndex value must be a number."
    End If
  Else
    MsgBox "Invalid input. ScreenshotIndex value must be a number."
  End If
Else
  MsgBox "No update made."
End If

License

This project is licensed under the 0BSD License.

About

A simple VBScript to update the Screenshot Index value in the Windows Registry.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published