Forrest logo
back to the vso tool

vso:tldr:07d7c

vso: Create an automated task to execute during boot.
$ vso create-task --name "${string}" --description "${string}" --command "${command}" --on-boot
try on your machine

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:

  1. --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.

  2. --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.

  3. --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.

  4. --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.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the vso tool