Versions Compared

Key

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

...

Start-JobSchedulerJob [-Job] <String> [[-Directory] <String>] [[-Parameters] <Hashtable>] [[-Environment] <Hashtable>] [[-At] <String>] [[-Timezone] <String>] [[-AuditComment] <String>] [[-AuditTimeSpent] <Int32>] [[-AuditTicketLink] <Uri>] [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

...

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

WhatIf

-WhatIf <SwitchParameter>

Required?false
Position?named
Default value
Accept pipeline input?false
Accept wildcard characters?false

Confirm

-Confirm <SwitchParameter>

Required?false
Position?named
Default value
Accept pipeline input?false
Accept wildcard characters?false

about_JobScheduler

...

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

PS > $params = $Start-JobSchedulerJob -Job /some_path/some_job -Parameters @{'par1' = 'val1'; 'par2' = 'val2'} Start-JobSchedulerJob -Job /some_path/some_job -Parameters $params

Starts the job with parameter 'par1' and 'par2' and respective values.