Hello, cincytechie.
Here is further patchwork to accommodate your need. It is self-explanatory.
As a side note, I put "*.htm", "*.html", "*.jpg" and "*.jpeg" there just to draw your attention to certain feature of running dir in cmdline.
regards - tsuji
'-------------------------------------------------------------------
Option Explicit
Const findresult_prefix = "found_"
Const findresult_postfix = ".txt"
Dim findresult_array, target_file_array, search_drive_array
'
---------------Parameters to be edited for a specfic job-----------------
target_file_array = Array("*.mdb","*.mde","*.htm","*.html","*.jpg","*.jpeg"

search_drive_array = Array("c", "d", "e", "f"
'
------------------------------------------------------------------------
Dim i, findresult, target_file
ReDim findresult_array(UBound(target_file_array))
For i = 0 To UBound(target_file_array)
target_file = target_file_array(i)
findresult_array(i) = findresult_prefix & _
Right(target_file,len(target_file)-InStrRev(target_file,"."

) & _
findresult_postfix
Next
Dim wsh, outfile, Drv
Set wsh = WScript.CreateObject("WScript.Shell"
For i = 0 To UBound(target_file_array)
findresult = findresult_array(i)
target_file = target_file_array(i)
'WScript.Echo "Processing on target file : " & target_file & " begins."
outfile = WScript.ScriptFullName
outfile = Left(outfile, InStrRev(outfile, "\"

)
outfile = outfile & findresult
wsh.Run "%comspec% /c del " & outfile & " > nul", 0 , True
For Each Drv in search_drive_array
wsh.Run "%comspec% /c dir " & Drv & ":\" & target_file & " /s /b >> " & outfile, 0, True
Next
'WScript.Echo "Processing on target file : " & target_file & " is done."
Next
Set wsh = Nothing
WScript.Quit
'-------------------------------------------------------------------