Delete team project from Visual Studio Team Services

ぃ、小莉子 提交于 2019-12-03 00:04:35

问题


I am using Team Services on domain visualstudio.com and I need to delete one project, I found out that I need to use command prompt to delete projects, but when I tried the script it seemed that it doesn't work

My Script is,

TfsDeleteProject 
  /force collection:https://mytfs.visualstudio.com/DefaultCollection MyProject

My first mistake was that I didn't append DefaultCollection to the URL, but now I get error that I don't have privileges.


回答1:


Thanks to @Christopher I was able to make the script work.

You can use the following command from the "Developer Command Prompt":

TfsDeleteProject /collection:https://mytfs.visualstudio.com/DefaultCollection MyProject




回答2:


You can now do it via visualstudio.com

  1. Open the administration context for the team project collection by choosing the gear icon.

  2. Open the menu for the team project that you want to delete.

    If you don’t see the actions icon , either you’re not accessing VSTS or you’re not a member of the Project Collection Administrators group.

  3. You must type the name of the team project in order to initiate the delete operation.




回答3:


  1. Open “Developer Command Prompt” under “Program Files>Microsoft Visual Studio” or in Windows 8 type “Developer“.

  2. In the command prompt, use this command template below to delete your project from TFS. Replace the YourTFSName to yours and also the ProjectName to the name of your project.

    TfsDeleteProject /collection:https://YourTFSName.visualstudio.com/DefaultCollection ProjectName
    
  3. Hit Enter and then Y if you are prompted for confirmation.

  4. Done. Double check by login to your TFS online.

From http://bizvise.com/2013/03/08/how-to-delete-team-project-from-my-team-foundation-service-tfs-default-collections/




回答4:


Although the accepted answer is absolutely correct and very clear, I managed to get lost and run into that 'grayed out Delete button' issue and just wanted to share what I was doing wrong.

For the folks having issue with grayed out delete button, make sure that you are inside 'View the collection administration page' (as shown in the accepted answer), not inside the project itself.

If the last breadcrumb on the top of your VS Team Services is the name of the project, you are at the wrong place (it looks similar). Here the Delete button (appears on right clicking the project name) will be grayed out.

If you click the link that says 'View the collection administration page' after clicking the Settings(gear), you will be at the right place.




回答5:


if your project name have space, you must use "MyProject name" TfsDeleteProject /collection:https://mytfs.visualstudio.com/DefaultCollection "MyProject name"



来源:https://stackoverflow.com/questions/13635889/delete-team-project-from-visual-studio-team-services

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!