Click here to Skip to main content
15,881,089 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
can this is possible to do
Test Case should not be part of Test Plan
i want to remove test case from test plan in test manager 2010
Posted

1 solution

You can use the destoywi[^] command to permanently remove any Work Item from TFS. I have the below code snippet in a bat file that I use when required.

@ECHO OFF
ECHO Please type the IDs :

set /p id=

cd c:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE

witadmin destroywi /collection:"http://<your tfs="" server="">:8080/tfs/<your tfs="" collection="" name="">" /noprompt /id:%id%

PAUSE</your></your>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900