Click here to Skip to main content
15,883,948 members
Articles / Programming Languages / C#
Article

Using the Team Foundation Server Security Tool - TFSSECURITY.EXE

Rate me:
Please Sign up or sign in to vote.
3.80/5 (3 votes)
1 Dec 20054 min read 77K   16   3
How to make a domain user a VSTS team project contributor.

Image 1

Introduction

This article explains how to add a domain user account to the groups associated with a VSTS team project using the TFSSecurity.exe tool that comes with Visual Studio Team System (VSTS). You might find this useful if you’re having problems using the GUI tools provided in VSTS and Visual Studio 2005 to manage such groups. It is assumed that you have already installed VSTS in your development environment and used it to create a team project.

Acknowledgement: Thanks to James Manning for explaining various aspects of the TFSSECURITY tool to me. See here for more details.

Background

Most developers use an Integrated Development Environment (IDE) like Visual Studio to write, debug and build their software. VSTS takes this idea one stage further by providing an integrated set of tools to support the entire software development lifecycle. Amongst the facilities provided by VSTS are: Source Control, Document Control, Work Item Management, Bug Tracking, Reporting Services, Process Guidance, Team websites and support for Team builds. Add to this list the tools in the professional version of Visual Studio 2005 and you’ve got a state of the art development environment for your team.

VSTS is comprised of a number of tiers that sit on different computers in your development environment. Typically, the data and application tiers sit on one (or two) dedicated computer(s) called the Team Foundation Server (TFS). The client tier, meanwhile, sits on a developer’s PC along with Visual Studio 2005. At present (Nov, 2005) Visual Studio 2005 has been released to the market and VSTS is at Beta 3 - refresh. There are still a number of wrinkles that need ironing out of Team Foundation Server, particularly when it comes to managing security and permissions.

Using TFSSecurity.exe to add users to a team project contributor group

The following steps presume you have installed TFS on a computer called DEVSERVER in a Domain called SIGNAUSTR that already has user accounts for Jim and TFSSERVICE - see Note 1 below:

  1. Logon to DEVSERVER as TFSSERVICE - see Note 4.
  2. Find the directory containing TFSSecurity.exe installed during the setup of TFS.
  3. Add this directory to your path (Control Panel | System – Advanced, Press Environmental Variables, select Path in the System Variables list, press Edit and type a semicolon plus the path to the end of any existing string in the Variable Value box)
  4. Open the Command prompt window and type the following command:
    TFSSECURITY /server:DEVSERVER /g [SandpitTest]

    Where SandpitTest is the name of your team project. The program lists all the groups associated with SandpitTest. Note the name of the group to which you want to add users, e.g. Contributors. If you get FATAL ERROR TF50309 - see Note 3 below.

  5. Type the following command:
    TFSSECURITY /server:DEVSERVER /g+ 
                [SandpitTest]\Contributors n:SIGNAUSTR\Jim

    If you like typing you could use the SID value returned at step 4 (SID:S-1-9-xxx - with spaces removed) instead of [SandpitTest]\Contributors. SIGNAUSTR is the name of the domain of which your TFS is a member and Jim is a user in the domain who you want to make a Contributor to the project SandpitTest. Also see Note 5.

TFSSECURITY is a powerful tool that allows you to do much more than just adding users to a team project. Type the following to obtain help about its various commands:

TFSSECURITY /?

Note 1: TFSSERVICE is the domain account you created during the installation of TFS for running Team Foundation Services. I had some permissions issues with this account because I installed TFS on my primary domain controller. These issues were resolved once I made it a member of the domain’s Enterprise Admins security group - many thanks to Adithya Dev at Microsoft support who patiently sorted out the problem for me.

Note 2: The original version of this article included the source code to build ListTeamProjects; a program written by James Manning and maintained at his blogsite. Although you should not need this program to use TFSSECURITY due to a bug (see Note 3) it may be useful to you so, James has provided the EXE plus the source here.

Note 3: There is a bug in TFSSECURITY released with Beta 3 Refresh which means that you have to supply the URI of the project to list its groups rather than the friendly name. Therefore in place of /g [SandpitTest] you must enter /g vstfs:///Classifications... . You can get the URI of your project by running ListTeamProjects with the name of your TFS server as a parameter, for example ListTeamProjects DEVSERVER. See note 2 for details about ListTeamProjects.

Note 4: If you just want to list the global groups on your server (step 4) then you can logon as any user who is a member of "Team Foundation Valid Users". If you want to add or remove users from a global group then logon as any user who is a member of "Team Foundation Administrators". If you want to add or remove users from a project group (step 5) then logon as any user who is a member of either the project's "Project Administrators" group or a member of "Team Foundation Administrators".

Note 5: If you want to add a user to a group whose friendly name includes whitespace then put quotes around the entire group name. For example, "[SandpitTest]\Build Services".

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
A software developer

Comments and Discussions

 
GeneralAccess TFS using C# Pin
Sendilkumar.M19-Nov-08 4:45
Sendilkumar.M19-Nov-08 4:45 
GeneralTFS with VS 2005 Professional Pin
Majid Shahabfar9-Jan-06 2:08
Majid Shahabfar9-Jan-06 2:08 
GeneralRe: TFS with VS 2005 Professional Pin
deepu_ibo24-Aug-06 2:37
deepu_ibo24-Aug-06 2:37 
Hi,
You can access TFS server from VS 2005 after installing TFS client.
This TFS client u can see one more sub menu item in View menu. Click on Team Explorer. From this you can access TFS server.

Please let me know if you required more details.

Regards
Deepak
khare_deepak@hotmail.com

khare_deepak@hotmail.com

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.