Try this vb script, copy all this code into notepad and save as renamer.vbs or whatever (have "all files" selected in the save dialogue). Run the script and choose the folder where your pictures are, if they are on the desktop you will need to navigate in the folder dialogue to the full path i.e C:\Documents and Settings\Owner\Desktop\New Folder etc... or whatever So this script only works on jpg files or ".jpg" to be precise..... And will only remove the first 5 characters in the filename i.e DSC-x and leave the rest.. dim fso dim folder dim file dim fname dim ObjFSO dim folderpath set fso = createobject("Scripting.FilesystemObject") set objShell = CreateObject("Shell.Application") set objFolder = objShell.BrowseForFolder(0, "Example", 0, ssfAll) if objFolder is nothing then Wscript.Echo "Script Error: Please select a folder!" Wscript.Quit end if folderpath = objFolder.ParentFolder.ParseName(objFolder.Title).Path & "\" set folder = fso.GetFolder(folderpath) for each file in folder.files if right(file.name,3) = "jpg" then fname = mid(file.name,6,(len(file.name)-5)) fso.movefile folderpath & file.name,folderpath & fname end if next