Can I create new TeamProjectCollection and TeamProject on TFS using Tfs API programmatically

Hi,
I want to ask that is there is any way to create new TeamProjectCollection and then new TeamProject on that collection using tfs api programmatically ?
Thanks in advance.

Hi Hassan,
There is no API to create a team project, but you can script it using devenv. You can check the links below for more information:
http://blogs.msdn.com/b/granth/archive/2009/09/25/scripting-team-project-creation-in-tfs2010.aspx
https://social.msdn.microsoft.com/Forums/vstudio/en-US/99184c0e-31b4-43aa-8f36-52545bb48e33/create-a-team-project-programatically?forum=tfsprocess
Best regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Can We Create New Categories and Folders?

    I hate having all of my apps piled up in the "ALL" category.  Can we create new categories such as "Business Apps" or "Education" in order to stay organized? If not can we at least create folders within the existing catefories?
    Solved!
    Go to Solution.

    I read a response to a similar question yesterday on this forum. The BlackBerry tech said it is not an option right now but you can choose your favorites and have them show in the favorites section. Maybe folders will be available later. Enjoy the new tablet I know I am.

  • How can I create new carriforwarede and Brodforwarded wage types

    Hi Gurus
    We had one wage as special compensation.that has been done for to update in IT0014. 
    Now new requirement is came that special compesation was type they would like to update in IT0008.  I have all the necessary configuration. its working fine.  now client wants to create Brodfowarded and Carryforwarded wage types for this wage type.
    Pls let me know how can I create these.?
    And where should I have to map this?
    Is it scheema level job or not?
    pls asap.
    Regards
    suresh

    Hi Navya
    Thanks for your replay
    Can you pls some elobarate this.  becasue of I have not all done schema changes till now.  here we have been using IN00 schema.
    Can give some brief explanatation how can I do this.  I have been wiating for you valuable replay. pls
    Regards
    Suresh

  • Can we create new customer site for existing customers using custm interfc

    Hi ,
    I have a requirement :
    version -- R12 .
    We need to add new customer site for existing customers , is it possible to create it through customer interface with insert_update_flag set as U / I .
    Any help in this is grate .
    regards ,
    Azzu .

    I am pretty sure I've done this on one of my past project..
    why don't you try it out?
    Another route would be use customer APIs (TCA APIs)...which I am sure can achieve what you're looking for.
    Edited by: James Kim on Mar 17, 2010 2:48 PM

  • font color=red Create/Modify forms and triggers through C++ using OPEN API

    <font color=red>
    Dear brothers/sisters<font color=darkblue>
    <br><br>
    Please help us to find the linking problem.
    <br>
    We have to add PRE-FORM trigger to many FMBies. We have thousants of FMBies. So opening one by one is difficult. For this we are using OPEN API and BORLAND C++. We have coppied all header files from D:\orant\FORMS60\API.
    But there is a link error. Here is the snippet.
    <br>
    <font color=red>
    <br>#include <stdio.h>
    <br>#include <stdlib.h>
    <br>#include <malloc.h>
    <br>#include <d2fctx.h> /* Forms API context */
    <br>#include <d2ffmd.h> /* Form module header file */
    <br>int main (int argc, char *argv[])
    <br>{
    <br>d2fctxa ctx_attr;
    <br>d2fctx *ctx;
    <br>d2ffmd *form;
    <br>text *form_name;
    <br>/* Check arguments */
    <br>if ( argc != 2 )
    <br>{
    <br>fprintf(stderr, "USAGE: %s <filename>\n", argv[0]);
    <br>exit(1);
    <br>}
    <br>/* Create Forms API context */
    <br>ctx_attr.mask_d2fctxa = (ub4)0;
    <br>if ( d2fctxcr_Create(&ctx, &ctx_attr) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error creating Forms API context\n");
    <br>exit(1);
    <br>}
    <br>/* Load the form module into memory */
    <br>if ( d2ffmdld_Load(ctx, &form, argv[1], FALSE) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Failed to load form module: %s\n", argv[1]);
    <br>exit(1);
    <br>}
    <br>/* Get the name of the form module */
    <br>if ( d2ffmdg_name(ctx, form, &form_name) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error getting the name of the form module\n");
    <br>}
    <br>else
    <br>{
    <br>/* Print the name of the form, then free it */
    <br>printf ("The name of the form is %s\n", form_name);
    <br>free(form_name);
    <br>}
    <br>/* Destroy the in-memory form */
    <br>if ( d2ffmdde_Destroy(ctx, form) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error destroying form module\n");
    <br>}
    <br>/* Close the API and destroy context */
    <br>d2fctxde_Destroy(ctx);
    <br>return 0;
    <br>}
    <br>
    <font color=darkblue>
    <br>
    The compilation is success. But there is a link error. Please help us to find the problem.
    <br><br>
    Here is the error Message.
    <br>
    <font color=red>
    <br>Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    <br>FIRST.CPP:
    <br>Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
    <br>Error: Unresolved external '_d2fctxcr_Create' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdld_Load' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdgt_GetTextProp' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2fctxde_Destroy' referenced from D:\API\FIRST.OBJ
    <br><br>
    <font color=darkblue size=4>Could you please help us.......<br>

    <font color=red>
    Dear brothers/sisters<font color=darkblue>
    <br><br>
    Please help us to find the linking problem.
    <br>
    We have to add PRE-FORM trigger to many FMBies. We have thousants of FMBies. So opening one by one is difficult. For this we are using OPEN API and BORLAND C++. We have coppied all header files from D:\orant\FORMS60\API.
    But there is a link error. Here is the snippet.
    <br>
    <font color=red>
    <br>#include <stdio.h>
    <br>#include <stdlib.h>
    <br>#include <malloc.h>
    <br>#include <d2fctx.h> /* Forms API context */
    <br>#include <d2ffmd.h> /* Form module header file */
    <br>int main (int argc, char *argv[])
    <br>{
    <br>d2fctxa ctx_attr;
    <br>d2fctx *ctx;
    <br>d2ffmd *form;
    <br>text *form_name;
    <br>/* Check arguments */
    <br>if ( argc != 2 )
    <br>{
    <br>fprintf(stderr, "USAGE: %s <filename>\n", argv[0]);
    <br>exit(1);
    <br>}
    <br>/* Create Forms API context */
    <br>ctx_attr.mask_d2fctxa = (ub4)0;
    <br>if ( d2fctxcr_Create(&ctx, &ctx_attr) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error creating Forms API context\n");
    <br>exit(1);
    <br>}
    <br>/* Load the form module into memory */
    <br>if ( d2ffmdld_Load(ctx, &form, argv[1], FALSE) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Failed to load form module: %s\n", argv[1]);
    <br>exit(1);
    <br>}
    <br>/* Get the name of the form module */
    <br>if ( d2ffmdg_name(ctx, form, &form_name) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error getting the name of the form module\n");
    <br>}
    <br>else
    <br>{
    <br>/* Print the name of the form, then free it */
    <br>printf ("The name of the form is %s\n", form_name);
    <br>free(form_name);
    <br>}
    <br>/* Destroy the in-memory form */
    <br>if ( d2ffmdde_Destroy(ctx, form) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error destroying form module\n");
    <br>}
    <br>/* Close the API and destroy context */
    <br>d2fctxde_Destroy(ctx);
    <br>return 0;
    <br>}
    <br>
    <font color=darkblue>
    <br>
    The compilation is success. But there is a link error. Please help us to find the problem.
    <br><br>
    Here is the error Message.
    <br>
    <font color=red>
    <br>Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    <br>FIRST.CPP:
    <br>Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
    <br>Error: Unresolved external '_d2fctxcr_Create' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdld_Load' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdgt_GetTextProp' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2fctxde_Destroy' referenced from D:\API\FIRST.OBJ
    <br><br>
    <font color=darkblue size=4>Could you please help us.......<br>

  • Imoive : can not open new projects and kept pop up "you have permission to write projects" . plz help~!

    New mac mini OS X Lion
    I have problem with Imoive. When I try to open new projects for imovie....
    Imovie can not create new projects and message pops up "Please check there is enough space or you have permission to write new projects".
    I have no clue and Disk has more than 300GB now.
    Can anyone help me....?

    I found a similar problem and the instructions said to check a permission box in the "Get Info" tab.
    This applies only when the Library is on an external drive. You cannot ignore permissions on the system drive.
    I was deleting files trying to make space on my hard drive
    What were you deleting?
    and noticed as I was deleting files more data was being added to the iPhoto Library.
    Hard to see how deleting files can add data to the iPhoto Library. Can you explain why you thought this?
    I would really like to keep these pictures.
    Make a back up now.
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store

  • HT2534 My friend created me an itunes store account with his credit card , his credit card is about to expire and they are asking me to re-enter the credit card and security card number .... I don't have these numbers ... How can i create new itunes accou

    My friend created me an itunes store account with his credit card , his credit card is about to expire and they are asking me to re-enter the credit card and security card number .... I don't have these numbers ... How can i create new itunes account without credit card?????

    Why do you need to create a new account?
    Just change the payment method.
    http://support.apple.com/kb/ht1918

  • When i bought this iMac i failed to register correctly and as i am trying to install a printer i need to do this when i am logging on. How can i create new password

    When i bought this iMac i failed to register correctly and as i am trying to install a printer i need to do this when i am logging on. How can i create new password

    See
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/ and
    http://osxdaily.com/2011/09/19/change-password-mac-os-x-10-7-lion-without-knowin g-current-password/
    which also apply to Mtn Lion and Macericks.

  • HT201240 I forget my password and hint . How can I create new password ?

    I forget my password and hint in MacBook Air 11-inch mid 2012 . How can I create new password .

    Reset Password
    OS X 10.7 Lion /10.8 MountainLion
    Follow the instructions in the first and the third boxes.
    http://pondini.org/OSX/Password.html
    Note
    Keychain
    http://support.apple.com/kb/PH10623
    Best.

  • Updated Mac Air to Mountain Lion and now I can not create new email in Hot Mail

    Updated Mac Air to Mountain Lion and now I can not create new email in Hot Mail

    Greetings,
         What you posted is rather vague. By doesn't work do you mean the applications don't open at all or are you getting a message stating that your product needs activation? If it's product activation then that is something that Microsoft will have to assist you with. If your problem is that the applications simply won't open you may have to uninstall and reinstall Office again. This is common on the Windows platform too. Rarely when you upgrade to a new OS Office sometimes has an issue with the upgrade and won't open correctly. I would suggest merely uninstalling and reinstalling. Nine times out of ten that helps.

  • I've lost my iCal calendars and can't create new ones

    I've used iCal flawlessly for a long time. Suddenly, though, I noticed that I lost all my indivdual calendars in iCal. I couldn't see any calendar postings in the main calendar until I trashed my pref file from the library and relaunched. Then I would see the individual events created under my "home" calendar, yet I would not see the "home" calendar listed as an option in the left-hand view of calendars. Plus, I now can't create new calendars.
    Anybody have any idea what's going on here?

    Is this correct: you had multiple calendars; they disappeared from the calendar pane and their events from the main pane; you deleted ~/Library/Preferences/com.apple.ical.plist; you now have a single calendar (Home) but cannot make more; you can see the events in Home?
    Can you add events to Home?
    Can you see as many folders in ~/Library/Application Support/iCal/Sources/ as you used to have calendars?
    Double-click ~/Library/Application Support/iCal/nodes.plist. Click the black triangle beside the word Root. In the line "List Array ..." how many ordered objects are reported? Does this match your original calendar count?
    What have you added/changed/modified recently? Might it have involved any fonts?
    AK

  • Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do

    Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do I fix this?

    Is there a log file in the document folder indicating what the problem was. There are a number of reasons that PDF creation may fail. You can try to print to the Adobe PDF printer to see if there is any indication in that process. The processing is different, but the same problems may show up with both processes.

  • I want to sort all my bookmarks alphabetically but can't. You only let me drop a bookmark into an already-existing folder. And if that is the only way, how can I create new folders?

    Question
    I want to sort all my bookmarks alphabetically but can't. You only let me drop a bookmark into an already-existing folder. And if that is the only way, how can I create new folders so that I can try to create meaningful folders?

    With the iPod connected to the computer go to the Music pane for the iPod in iTunes and check the box that says sync only checked songs. The check the songs you want synced and click on Sync. For more info see:
    iTunes: Syncing media content to iOS devices and iPod

  • I create new id and i can not sign in because i must provide credit card and i have not one what should i do ??

    i create new id and i can not sign in because i must provide credit card and i have not one what should i do ??

    Here's how to change or remove the payment info:
    Change or remove your payment information from your iTunes Store account (Apple ID)On your iPhone.
    Check this article to create an account without a credit card info:
    Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method

  • Can we create new cref.exe

    Hi all,
    suppose if we modify the source code present in java card framework and then compile them to class files, converting these class files to JCA files , generating mask files from these JCA files, and using these mask files along with C code available to create new cref.exe
    Is it possible to do the above steps.
    Thanks in advance
    murali

    920553 wrote:
    can we create new LOV's using forms personalizationhttps://forums.oracle.com/forums/search.jspa?threadID=&q=personalization+AND+LOV&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

Maybe you are looking for

  • Installing Adobe Photo Elements on a MacBook Pro.

    I am trying to install Adobe Photoshop Elements 2.0. When it tries to install it gives an error that says that it can't find the "Classic Environment". The install manual says to go to System Preferences and select a classic environment which is not

  • Serialisation field in control record in idocs

    Hi Experts, I have one requirement like this.While generating idocs in control record we get serialization number by combining system date and time. But now my requirement is i have to change that serialisation field with required timestamp.Can we do

  • Jax-rpc 2 D arrays

    i need a web service to return a 2-d array of string objects, i tried to implement it.. but it gave me the following error: deserialization error: unexpected array element type: expected={http://www.w3.org/2001/XMLSchema}string;, actual={http://www.w

  • Is there a way to permanently resize the fonts?

    A friend of mine just bought his first Mac and is using Safari.  He is able to enlarge the fonts when he opens Safari, but has to resize them everytime he starts Safari.  I don't use Safari, so I can't help him - any solution?  TIA.

  • Want my current ipod to synch to a new itunes library

    Hi there - wondered if anyone can help? I had itunes installed - ipod and itunes all working fine. then my computer got a virus and had to have everything wiped. Now when I plug my Ipod in it tells me that it is synched to a library alreday (which wa