Found a nice piece of vbScript code on SuperUser that can function like find and replace in Office to locate and change characters/words in a folder to mass edit them to your liking. I was wondering if this code could be expanded upon to call any and all sub folders under the root target folder?
Set objFso = CreateObject("Scripting.FileSystemObject")
Set Folder = objFSO.GetFolder("c:\test\")
For Each File In Folder.Files
sNewFile = File.Name
sNewFile = Replace(sNewFile,"_"," ")
if (sNewFile<>File.Name) then
File.Move(File.ParentFolder+"\"+sNewFile)
end if
Next