Yes, they are all available. Get-Helpreturns (like any other cmdlet) an object, and the default rendering of this object is what you see on the console.
However, if you pump Get-Helpthrough format-list, for example:
get-help get-childitem | format-list
You will get a list of name-value pairs of properties. To get synopsis, you can do the following:
get-help get-childitem |select-object -property synopsis
And the conclusion:
Synopsis
--------
Gets the files and folders in a file system drive.
If your file .ps1does not have the cmdlets defined in it (your help based on comments covers the entire script) get-help file.ps1|select synopsisshould work. Otherwise, you will need “dot-source” files to load cmdlet definitions into memory, then use Get-Helpas described above.
alroc source
share