So far I run a .bat file to find all the media files stored on our student shared drive, which then writes to a .txt file in my documents, for example:
dir S:*.mp3 /s > "M:\logs\student\mp3.txt"
This is probably not the best way of doing it and I am aware there are probably better tools in 2008 R2 to do this for me. I am now trying to find a way to only log files that are, for example, bigger then 100mb. Is this doable in a .bat files/cmd.exe, am I better off using PowerShell, or use the fuctions in Server 2008R2?