New-PSReportingScript
SYNOPSIS
Script template for scripts to create reports
SYNTAX
New-PSReportingScript [[-Path] <DirectoryInfo>] [-Verb] <String> [-Noun] <String> [[-Author] <String>]
[-Description] <String> [-tags] <String[]> [<CommonParameters>]
DESCRIPTION
Script template for scripts to create reports
EXAMPLES
EXAMPLE 1
New-PSReportingScript -Path .\PSToolKit\Private\ -Verb get -Noun blah -Description 'blah' -tags PS
PARAMETERS
-Path
Where the script will be created.
Type: DirectoryInfo
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: $pwd
Accept pipeline input: False
Accept wildcard characters: False
-Verb
Approved PowerShell verb
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Noun
Second part of script name.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Author
Who wrote it.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 4
Default value: Pierre Smit
Accept pipeline input: False
Accept wildcard characters: False
-Description
What it does.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-tags
Tags for searches.
Type: String[]
Parameter Sets: (All)
Aliases:
Required: True
Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.