vso:tldr:07d7c
The command "vso create-task" is used to create a task in Visual Studio Online (VSO). Here is a breakdown of the command and its options:
-
--name "${string}": This option specifies the name of the task. "${string}" is a placeholder for the desired name of the task. You need to replace "${string}" with the actual name you want to give to the task.
-
--description "${string}": This option defines the description of the task. Similar to the previous option, "${string}" is a placeholder that you should replace with the actual description for the task.
-
--command "${command}": This option specifies the command that needs to be executed when the task is run. Again, "${command}" is a placeholder, and you should replace it with the actual command you want to execute as part of the task.
-
--on-boot: This option indicates that the task should be executed when the system boots up.
By using this command with the appropriate values for name, description, command, and including the --on-boot flag, you can create a task in Visual Studio Online that will be executed on system boot.