다음을 통해 공유


BatchJobPreparationTask(String) Constructor

Definition

Initializes a new instance of BatchJobPreparationTask.

public BatchJobPreparationTask (string commandLine);
new Azure.Compute.Batch.BatchJobPreparationTask : string -> Azure.Compute.Batch.BatchJobPreparationTask
Public Sub New (commandLine As String)

Parameters

commandLine
String

The command line of the Job Preparation Task. The command line does not run under a shell, and therefore cannot take advantage of shell features such as environment variable expansion. If you want to take advantage of such features, you should invoke the shell in the command line, for example using "cmd /c MyCommand" in Windows or "/bin/sh -c MyCommand" in Linux. If the command line refers to file paths, it should use a relative path (relative to the Task working directory), or use the Batch provided environment variable (https://docs.microsoft.com/en-us/azure/batch/batch-compute-node-environment-variables).

Exceptions

commandLine is null.

Applies to