Using ISHRemote how can I filter based on a list of GUIDs?

Hi,

What is the most efficient way to only return objects from server that match a defined list of topic GUIDs?

I currently have the following

$ishObjects = Get-IshFolder -FolderPath $ishFolder -FolderTypeFilter @("ISHModule") -Recurse |
Get-IshFolderContent |
Where-Object {$_.ishref -in 'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
,'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
,'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
,'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
,'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
,'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
,'GUID-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'} | Get-IshDocumentObjData | Out-GridView

Any advice appreciated,

Regards,

Ann

emoji