@@ -15,10 +15,10 @@ Combines a path and a child path into a single path.
15
15
16
16
## SYNTAX
17
17
18
- ```
19
- Join-Path [-Path] <String[]> [-ChildPath] <String> [-AdditionalChildPath <String[]>] [-Resolve]
20
- [-Credential <PSCredential>] [-InformationAction <ActionPreference>] [-InformationVariable <String>]
21
- [-UseTransaction] [<CommonParameters>]
18
+ ``` powershell
19
+ Join-Path [-Path] <String[]> [-ChildPath] <String>
20
+ [[-AdditionalChildPath] <String[] >]
21
+ [-Resolve] [-Credential <PSCredential>] [- UseTransaction] [<CommonParameters>]
22
22
```
23
23
24
24
## DESCRIPTION
@@ -82,7 +82,7 @@ Parameter Sets: (All)
82
82
Aliases :
83
83
84
84
Required : False
85
- Position : Named
85
+ Position : 2
86
86
Default value : None
87
87
Accept pipeline input : True (ByPropertyName)
88
88
Accept wildcard characters : False
@@ -99,7 +99,7 @@ Parameter Sets: (All)
99
99
Aliases :
100
100
101
101
Required : True
102
- Position : 2
102
+ Position : 1
103
103
Default value : None
104
104
Accept pipeline input : True (ByPropertyName)
105
105
Accept wildcard characters : False
@@ -127,33 +127,6 @@ Accept pipeline input: True (ByPropertyName)
127
127
Accept wildcard characters : False
128
128
` ` `
129
129
130
- ### -InformationAction
131
- ` ` ` yaml
132
- Type : ActionPreference
133
- Parameter Sets : (All)
134
- Aliases : infa
135
- Accepted values : SilentlyContinue, Stop, Continue, Inquire, Ignore, Suspend
136
-
137
- Required : False
138
- Position : Named
139
- Default value : None
140
- Accept pipeline input : False
141
- Accept wildcard characters : False
142
- ` ` `
143
-
144
- ### -InformationVariable
145
- ` ` ` yaml
146
- Type : String
147
- Parameter Sets : (All)
148
- Aliases : iv
149
-
150
- Required : False
151
- Position : Named
152
- Default value : None
153
- Accept pipeline input : False
154
- Accept wildcard characters : False
155
- ` ` `
156
-
157
130
### -Path
158
131
Specifies the main path (or paths) to which the child-path is appended.
159
132
Wildcards are permitted.
@@ -167,7 +140,7 @@ Parameter Sets: (All)
167
140
Aliases : PSPath
168
141
169
142
Required : True
170
- Position : 1
143
+ Position : 0
171
144
Default value : None
172
145
Accept pipeline input : True (ByPropertyName, ByValue)
173
146
Accept wildcard characters : False
0 commit comments