Get the syntax for a cmdlet pretty printed + explanation
Extend Builtin\Get-HelpSyntax.ps1
https://powershellone.wordpress.com/2018/07/25/powershell-get-command-syntax-output-explained/
Get-HelpSyntax [-Command] <Object>
Splits Get-Command CMD -Syntax output based on Regex (seen at PowerShell Conf EU I believe from Stefan Gustavson). Adds explanatory text on the syntax of the syntax
Get-HelpSyntax Get-Command
Name of the command to get the syntax for.
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
https://powershellone.wordpress.com/2018/07/25/powershell-get-command-syntax-output-explained/