I would like to be able to interrogate a storage device to generate a list of the files it contains and various bits of metadata about the files. They are primarily video and image files, so information such as dimensions, dpi and duration would be useful. We use md5 hashes for checking file fixity, so excluding .md5 files would be beneficial.
I have used the following PowerShell script which yields great results for basic file metadata, but I haven't been able to figure out how to add the additional metadata I require:
gci -path "E:\\Files” -file -recurse | select-object fullname, name, length, lastwritetime, CreationTime, Extension | export-csv c:\\temp\\Files_Contents.txt
Is there a simple way to find this additional metadata?