You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Example 3: Change scheduled jobs on a remote computer
126
129
@@ -170,7 +173,8 @@ for this parameter are:
170
173
- `Negotiate`
171
174
- `NegotiateWithImplicitCredential`
172
175
173
-
The default value is `Default`. For more information about the values of this parameter, see [AuthenticationMechanism Enumeration](/dotnet/api/system.management.automation.runspaces.authenticationmechanism)
176
+
The default value is `Default`. For more information about the values of this parameter, see
Copy file name to clipboardExpand all lines: reference/5.1/PSWorkflow/About/about_Parallel.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,10 +18,8 @@ The `parallel` keyword runs workflow activities in parallel. This keyword is val
18
18
### SYNTAX
19
19
20
20
```
21
-
workflow <Verb-Noun>
22
-
{
23
-
parallel
24
-
{
21
+
workflow <Verb-Noun> {
22
+
parallel {
25
23
[<Activity>]
26
24
[<Activity>]
27
25
...
@@ -36,10 +34,8 @@ The commands in a `parallel` script block can run concurrently. The order in whi
36
34
For example, the following workflow includes a `parallel` script block that runs activities that get processes and services on the computer. Because the Get-Process and Get-Service commands are independent of each other, they can run concurrently and in any order.
0 commit comments