Skip to content

Get-PSModuleTest#

SYNOPSIS#

Greets an entity by name.

SYNTAX#

__AllParameterSets#

Get-PSModuleTest [-Name] <string>

ALIASES#

This cmdlet has the following aliases, {{Insert list of aliases}}

DESCRIPTION#

Returns a greeting string for the given name. This is a scaffold example function. Replace it with your module's first real command.

EXAMPLES#

EXAMPLE 1#

Get-PSModuleTest -Name 'World'

Hello, World!

PARAMETERS#

-Name#

The name of the entity to greet.

Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 0
  IsRequired: true
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

CommonParameters#

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS#

None#

You cannot pipe objects to this function.

{{ Fill in the Description }}

OUTPUTS#

System.String#

A greeting string for the given name.

{{ Fill in the Description }}

System.String#

{{ Fill in the Description }}

NOTES#

This scaffold function is intended to be replaced with the module's first real command.