Hi
How do I get a list of publications (not publicationOutput)?
Each publication should be listed once, even if it has been published with three different output types
Thanks!
Hi
How do I get a list of publications (not publicationOutput)?
Each publication should be listed once, even if it has been published with three different output types
Thanks!
Besides Raf suggestion, there are two other routes...
The first being to export to Excel and do your action there. The https://github.com/dfinke/ImportExcel module is very handy for that. So with that PowerShell module installed, your command would look:
Find-IshPublicationOutput | Export-Excel
To stay within PowerShell, I would use:
Find-IshPublicationOutput | Sort-Object -Property IshRef,version_version_value -Unique