I'd like to obtain object names and GUIDs of objects that are stored in the specified folder. I wrote the following script, and it successfully listed all object names in the specified folder.
Get-IshFolder -FolderPath $td_folder_path | Get-IshFolderContent | Get-IshDocumentObj | Get-IshMetadataField -Name FTITLE -Level Logical
However, I couldn't find a way to obtain GUIDs of the objects in the folder.
Any advice apperiated.
Naoki