Ithere a wildcard that I can put in this vbs file that would search all the directories and remove any comma's? So far it works fine with one folder at a time. Here is my VBS file text-
Const folder = "C:\Documents and Settings\tomabaker\My Documents\Scans\ID*.*\"
With CreateObject("Scripting.FileSystemObject")
On Error Resume Next
For Each file In .GetFolder(folder).Files
file.Name = Replace(file.Name, ",", "")
Next 'file
End With 'FSO
Const folder = "C:\Documents and Settings\tomabaker\My Documents\Scans\ID*.*\"
With CreateObject("Scripting.FileSystemObject")
On Error Resume Next
For Each file In .GetFolder(folder).Files
file.Name = Replace(file.Name, ",", "")
Next 'file
End With 'FSO