Add a link on the right mouse button menu that converts all files in the chosen folder from .jpg – .JPG// Part One
Copy the following and save it as print.reg
Double click and add the contents to the registry.
=================================================
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\Directory\shell\renjpg]
[HKEY_CLASSES_ROOT\Directory\shell\renjpg]
@=”Rename Files to *.JPG”
“HasLUAShield”=””
[HKEY_CLASSES_ROOT\Directory\shell\renjpg\command]
@=”cmd.exe /s /k pushd \”%V\” & renjpg”
[-HKEY_CLASSES_ROOT\Directory\Background\shell\renjpg]
[HKEY_CLASSES_ROOT\Directory\Background\shell\renjpg]
@=”Rename Files to *.JPG”
“HasLUAShield”=””
[HKEY_CLASSES_ROOT\Directory\Background\shell\renjpg\command]
@=”cmd.exe /s /k pushd \”%V\” & renjpg”
[-HKEY_CLASSES_ROOT\Drive\shell\renjpg]
[HKEY_CLASSES_ROOT\Drive\shell\renjpg]
@=”Rename Files to *.JPG”
“HasLUAShield”=””
[HKEY_CLASSES_ROOT\Drive\shell\renjpg\command]
@=”cmd.exe /s /k pushd \”%V\” & renjpg”
=========================================================
// Part Two
Copy the following to a file called renjpg.bat and save it in the Windows/System32 directory.
========================
ren *.jpg *.JPG
exit
========================