-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path07-help.ps1
33 lines (33 loc) · 1022 Bytes
/
07-help.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<#
.SYNOPSIS
Short description
.DESCRIPTION
Long description
.PARAMETER Path
Specifies a path to one or more locations.
.PARAMETER LiteralPath
Specifies a path to one or more locations. Unlike Path, the value of LiteralPath is used exactly as it
is typed. No characters are interpreted as wildcards. If the path includes escape characters, enclose
it in single quotation marks. Single quotation marks tell Windows PowerShell not to interpret any
characters as escape sequences.
.PARAMETER InputObject
Specifies the object to be processed. You can also pipe the objects to this command.
.EXAMPLE
C:\PS>
Example of how to use this cmdlet
.EXAMPLE
C:\PS>
Another example of how to use this cmdlet
.INPUTS
Inputs to this cmdlet (if any)
.OUTPUTS
Output from this cmdlet (if any)
.NOTES
General notes
.COMPONENT
The component this cmdlet belongs to
.ROLE
The role this cmdlet belongs to
.FUNCTIONALITY
The functionality that best describes this cmdlet
#>