Powershell find files with versions.
26/12/2011 Leave a comment
If you are searching all same files and versions in your drive you can user fallowing powershell command:
get-childitem -Recurse | where-object { $_.Name -eq “Microsoft.Sharepoint.ApplicationPages.dll” } |%{ $_.VersionInfo }| select * > c:\FileVersions.txt