-
Notifications
You must be signed in to change notification settings - Fork 1
Export BinaryCmdletNames
Nick Spreitzer edited this page Nov 16, 2019
·
5 revisions
external help file: WhatsNew.dll-Help.xml
Module Name: WhatsNew
schema: 2.0.0
Extracts cmdlet names from a given module.
Export-BinaryCmdletNames -ModuleInfo <PSModuleInfo> [<CommonParameters>]
Returns a string array of all cmdlet names contained in a binary PowerShell cmdlet. Examine the WhatsNew build script for example usage.
PS C:\> Get-Module WhatsNew -All |
Where-Object { $_.ModuleType -eq 'Binary' } |
Export-BinaryCmdletNames
Export-BinaryCmdletAliases
Export-BinaryCmdletNames
Export-PSScriptAliases
Export-PSScriptFunctionNames
New-MarkdownTableOfContents
Switch-CodeFenceToYamlFrontMatter
Switch-YamlFrontMatterToCodeFenceReturns a string array of all cmdlet names contained in the WhatsNew module.
The PSModuleInfo from which to extract cmdlet names.
Type: PSModuleInfo
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
The PSModuleInfo from which to extract cmdlet names