@@ -145,7 +145,8 @@ Start-Job -DefinitionName ProcessJob
145145```
146146
147147To manage the job and get the job results, use the job cmdlets. For more
148- information about the job cmdlets, see [ about_Jobs] ( ../../Microsoft.PowerShell.Core/About/about_Jobs.md ) .
148+ information about the job cmdlets, see
149+ [ about_Jobs] ( ../../Microsoft.PowerShell.Core/About/about_Jobs.md ) .
149150
150151> [ !NOTE]
151152> To use the Job cmdlets on instances of scheduled jobs, the ** PSScheduledJob**
@@ -173,8 +174,8 @@ time of each job instance.
173174
174175``` powershell
175176Get-Job -Name UpdateHelpJob |
176- Format-Table -Property Id, PSBeginTime, PSEndTime,
177- @{Label="Elapsed Time";Expression={$.PSEndTime - $.PSBeginTime}}
177+ Format-Table -Property Id, PSBeginTime, PSEndTime,
178+ @{Label="Elapsed Time";Expression={$.PSEndTime - $.PSBeginTime}}
178179```
179180
180181``` Output
@@ -213,7 +214,8 @@ new instances of the scheduled job.
213214
214215The following example uses splatting to create ` $JobParms ` which are parameter
215216values that are passed to the ` Register-ScheduledJob ` cmdlet. For more
216- information, see [ about_Splatting.md] ( ../../Microsoft.PowerShell.Core/About/about_Splatting.md ) .
217+ information, see
218+ [ about_Splatting.md] ( ../../Microsoft.PowerShell.Core/About/about_Splatting.md ) .
217219The ` Register-ScheduledJob ` uses ` @JobParms ` to create a scheduled job. The
218220command uses the ** MaxResultCount** parameter with a value of 12 to save only
219221the 12 newest job instance results of the scheduled job.
0 commit comments