This is the post so you the users can request features to be placed inside of the ProjectWise PowerShell Modules.
I would very much like to have the MD5-checksums of a document or checksums of files in an folder. Similar to Get-PWFileCheckSumReport, only that it comes accompanied with the GUID of a file.
E.g.
$docChk = Get-PWFileCheckSumReport -FolderPath 'folder' foreach($PWFile in $docChk ) { $x = $PWFile.GUID $y = $PWFile.Checksum }
or that the checksum can be added in the output of Get-PWDocumentsBySearch
Thanks in advance.
At your request, I've enhanced this cmdlet in v 2.0.8.0. Here's an example:
$rpt = Get-PWFileCheckSumReport -FolderPath 'Top Level\Sub-Folder' foreach ($row in $rpt.Rows) { "$($row.DocumentGUID): $($row.MD5Checksum)" }
Dave
wow, thanks!