You can force a rebuild of the cache on each client computer the next time it connects to a team project collection by using the witadmin rebuildcache command.
To prevent workspace errors from occurring during version control or build operations in Team Foundation, the data cache on client computers must be updated after certain maintenance operations. After you move, restore, rename, or fail over a data-tier or application-tier server, you must refresh the cache for tracking work items and users must refresh the version control cache on client computers.
Important |
---|
To avoid server performance issues, you should not run this command during normal operating hours. |
To run the witadmin command-line tool, open a Command Prompt window where either Visual Studio or Team Explorer is installed and enter:
Copy Code | |
---|---|
cd %programfiles%\Microsoft Visual Studio 11.0\Common7\IDE |
On a 64-bit edition of Windows, replace %programfiles% with %programfiles(x86)%.
Requirements
To use the witadmin rebuildcache command, you must be a member of the Team Foundation Administrators security group or the Project Administrators security group for the project collection that you want to manage. Team Foundation Server Permissions and Team Foundation Server Default Groups, Permissions, and Roles.
Note |
---|
Even if you log on with administrative permissions, you must open an elevated Command Prompt window to perform this function on a server that is running Windows Server 2008. To open an elevated Command Prompt window, choose Start, open the shortcut menu for Command Prompt, and choose Run as Administrator. For more information, see the Microsoft Web site. |
witadmin rebuildcache /collection:CollectionURL [/noprompt] |
Parameters
Parameter | Description |
---|---|
/collection:CollectionURL | Specifies the URI of the team project collection. The format for the URI is the following: http://ServerName:Port/VirtualDirectoryName/CollectionName If a virtual directory is not used, then the format for the URI is the following: http://ServerName:Port/CollectionName. |
/noprompt | Disables the prompt for confirmation. |
/? or help | Displays help about the command in the Command Prompt window. |
Remarks
The witadmin rebuildcache command invalidates cached data on all clients for a specified team project collection. This causes the cache for each client to be refreshed the next time the client connects to the project collection.
Examples
The following command invalidates the metadata cache for all clients that connect to DefaultCollection that is defined on the server that is named AdventureWorksServer. The client caches are updated the next time they connect to the project collection.
Copy Code | |
---|---|
witadmin rebuildcache /collection:http://AdventureWorksServer:8080/tfs/DefaultCollection |