Hi All,
I would like to get the projectwise powershell script code for getting the project properties and attributes. Kindly share code , if already implemented.
Regards,
-Vijay
You can use the Get-PWFolders -Slow to get project properties and Get-PWDocumentsBySearch -GetAttributes to get documents and attributes.
Thank you Brian,
I would like to get the document properties like Document Created date , full path/address of the document,
I couldn't able to use -GetAttributes ,since it is not available/. can you please send me the sample code. Thank you for your help.
The following should work. Just replace the folder path with the path to your project / folder.
$FolderPath = 'BSI900 - Adelaide Tower'$pwDocuments = Get-PWDocumentsBySearch -FolderPath $FolderPath -GetAttributes
Thank you. It worked.
How to check if the document is checkedout or not?
Using Shell script API?