Summary: Learn how to find specific types of commands from a Windows PowerShell module.
How can you list only cmdlets from a module that make new stuff?
Use the Get-Command cmdlet with the Module parameter, and specify the New verb (gcm is an alias for Get-Command):
gcm -Module hyper* -Verb new