You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

NAME

Stop-JobSchedulerJob

SYNOPSIS

Suspends a number of orders in the JobScheduler Master.

SYNTAX

Stop-JobSchedulerJob -Job <String> [-Directory <String>] <CommonParameters>

DESCRIPTION

This cmdlet is an alias for Update-Order -Action "suspend"

PARAMETERS

Job

-Job <String>

Required? true
Position? 1
Default value
Accept pipeline input? true (ByValue, ByPropertyName)
Accept wildcard characters?

Directory

-Directory <String>

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

about_jobscheduler

EXAMPLES

-------------------------- EXAMPLE 1 --------------------------

C:\PS>Suspend-Order -Order Reporting -JobChain /sos/reporting/Reporting

Suspends the order "Reporting" from the specified job chain.

-------------------------- EXAMPLE 2 --------------------------

C:\PS>Get-Order | Suspend-Order

Suspends all orders for all job chains.

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

C:\PS>Get-Order -Directory / -NoSubfolders | Suspend-Order

Suspends orders that are configured with the root folder ("live" directory)
without consideration of subfolders.

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

C:\PS>Get-Order -JobChain /test/globals/chain1 | Suspend-Order

Suspends all orders for the specified job chain.

  • No labels