tags:

views:

421

answers:

2

Just wondering the process to change the account running a TFS Build. TFS was installed with the local network service account and needs to be changed to a domain account.

+1  A: 

Did you try to use TFSAdminUtil.exe? It's located in the TFS Installpath\Tools and you can run it using the "Changeaccount"-parameter. You then have to provide the old username and the new username and password afterwards.

TFSAdminUtil.exe ChangeAccount local\oldaccount domain\newaccount password

The use of this command is described here. I used it to change the service account of the TFS and it worked, I don't know if it'll work for the build server, too.

timo2oo8
+2  A: 

For the build service I'm pretty sure you just change the account used by the build service. (In Manage Services right click on the Visual Studio Team Foundation Build service and then go to the Log On tab and edit the account)

You'll need to make sure that the new account has permissions to the drop location used by the builds. Also the Build Agents's working directory.

Martin Woodward