Friday 2 November 2018

Delete workspace of another user in Visual studio 2015 TFS

Hi Guys,

Here I'm showing yow how to delete a workspace of a user in Visual studio.

-> Go to  C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE
open command prompt as an admin.




Follow the syntax
tf workspace /delete "WORKSPACENAME;PREVIOUSUSERACCOUNT”


copy and paste in the command prompt and hit enter, then select "Y".

tf workspace /delete "SBIN001-3;rahulax@xyz.com"


That's it.

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...