Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Resume-JobSchedulerJobChain

SYNOPSIS

Resumes a number of job chains in the JobScheduler Master.

...

Resume-JobSchedulerJobChain [-JobChain] <String> [[-Directory] <String>] [[-AuditComment] <String>] [[-AuditTimeSpent] <Int32>] [[-AuditTicketLink] <Uri>] [<CommonParameters>]

DESCRIPTION

This cmdlet is used to resume ("unstop") previously suspended ("stopped") job chains in a JobScheduler Master.an alias for Update-JobSchedulerJobChain -Action "resume"

PARAMETERS

JobChain

-JobChain <String>
Specifies the path and name of a job chain that should be resumedsuspended.

The parameter -JobChain has to be specified if no pipelined job chain objects are used.

...

Required?false
Position?2
Default value/
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

AuditComment

...

Required?false
Position?3
Default valueAccept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

AuditTimeSpent

...

Required?false
Position?4
Default value0
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

...

about_jobscheduler

...

PS > Get-JobSchedulerJobChain -Stopped | Resume-JobSchedulerJobChain

Resumes all job chains that were previously suspended ("stopped").

-------------------------- EXAMPLE 3 --------------------------

PS > Get-JobSchedulerJobChain -Directory / some_path -Recursive NoSubfolders | Resume-JobSchedulerJobChain

Resumes job chains that are configured with the "some_path" and any sub-foldersroot folder ("live" directory) without consideration of subfolders.

-------------------------- EXAMPLE 4 --------------------------

...