Versions Compared

Key

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

...

Start-JobSchedulerJob -Job <String> [-Directory <String>] <CommonParameters>[-Parameters <Hashtable>] [-At <String>] [<CommonPara
meters>]

DESCRIPTION

This cmdlet is an alias for Update-Job -Action "start"

...

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

Parameters

-Parameters <Hashtable>
Specifies the parameters for the job. Parameters are created from a hashmap,
i.e. a list of names and values.

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

At

-At <String>
Specifies the point in time when the job should start:

  • now
    • specifies that the job should start immediately
  • now+1800
    • specifies that the job should start with a delay of 1800 seconds, i.e. 30 minutes later.
  • yyyy-mm-dd HH:MMSS
    • specifies that the job should start at the specified point in time.

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

...