Hi I found this script on Technet
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colFiles = objWMIService.ExecQuery _
("Select * from CIM_DataFile where Extension = 'mp3'")
For Each objFile in colFiles
Wscript.Echo objFile.Name
Next
My question is, is it possible to make LP do the same thing and search a remote computer
for a particular file and if so would some one kindly show me what the LP query, thank you.