Is there a full set of documentation for ishRemote detailing the available cmdlets?
Is there a full set of documentation for ishRemote detailing the available cmdlets?
Hi Todd,
ISHRemote supports the standard PowerShell cmdlets to get detailed information, like Get-Command, Get-Help, ...
Some examples.
To get for instance all commands available you can use:
Get-Command -Module ISHRemote
To get details about a certain command:
Get-Help -Name New-IshSession
To see the examples:
Get-Help -Name New-IshSession -examples
To see more details:
Get-Help -Name New-IshSession -detailed
I tried Get-Command -Module ISHRemote but nothing was returned. The Get-Help -Name New-IshSession worked fine but the examples didn't return anything different. There was no help regarding arguments. Do I need to install anything beyond ishRemote to get the help to work?
I was able to get t the help via the IDE. It had to do a download. Once that was done, the commands you provided worked. Thx
I was able to get t the help via the IDE. It had to do a download. Once that was done, the commands you provided worked. Thx
I can't find docs on "CommonParameters" like in this response to "help Find-IshBaseline":
Find-IshBaseline [-IshSession <IshSession>] [-MetadataFilter <IshField[]>] [-RequestedMetadata <IshField[]>]
[<CommonParameters>]
Is there a command that tells me what CommonParameters are? Or some other way to find out?
Thanks,
Mark
Oh wait, if I do "help Find-Baseline -detailed" it tells me what CommonParamters are. Now I'd like to find docs on IshField[], any idea?
Thanks,
Mark
Hi Mark,
If you use "Get-Help Find-IshBaseline -Full", so -Full instead of -Detailed, you also get examples and those might help you forward as well. Although a bit outdated I still like the Commands navigator panel in PowerShell ISE (integrated script editor) for browsing a PowerShell module - see screenshot below.
The IshField[], or IshField object array, is a container to group API concepts like Requested Metadata, Filter Metadata and Retrieved Metadata. It is very closely related to the public SOAP API containers, wrapped in a PowerShell syntax, as you can see on TD14SP4 - Baseline 2.5 Find ... There are cmdlets on how to create these containers as you will see in the samples.
I don't know your prior experience, some find Automating on SDL Tridion Docs (TDS2019) - Business Process Examples - General blog posts - Tridion Docs - RWS Community https://community.rws.com/product-groups/tridion/tridion-docs/b/weblog/posts/automating-on-sdl-tridion-docs-tds2019---business-process-examples usefull, and although it has been a while some release notes are describing options in more details like
-Dave