Command-Line Exit Codes
Visual Studio 2010
The Team Foundation version control command-line utility tf provides exit codes that indicate the level of success for a command.
The following command-line exit codes are defined for tf.exe.
Exit Code | Definition |
|---|---|
0 | Success. |
1 | Partial success; this means at least something, or possibly everything, failed to succeed. |
2 | Unrecognized command. |
100 | Nothing succeeded. |
Example
In order to check out two files, you might type the following command at the command-line:
tf checkout file_a.cs file_b.cs
If one of the files you are trying to check out does not exist on the server, you are returned 1 for partial success.