Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete team project from Visual Studio Team Services

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.

like image 621
zdarsky.peter Avatar asked Nov 29 '12 22:11

zdarsky.peter


People also ask

How do I delete a project from my team?

In the list of team projects, you will see a drop down arrow to the left of a team project name when you hover over the name with you mouse. Clicking on that drop down arrow will give you the option to delete the team project.

How do I delete a project in Visual Studio?

In Visual Studio, click View > Application Explorer to open the Application Explorer if it is not visible. Navigate to your project under the Visual Studio Projects folder. Right-click the project and select Delete. A delete confirmation appears.


Video Answer


1 Answers

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 

Printscreen of command prompt with working script

like image 132
zdarsky.peter Avatar answered Oct 12 '22 21:10

zdarsky.peter