Home > Blockchain >  Azure Devops can users be changed for free?
Azure Devops can users be changed for free?

Time:11-02

I have azure-devops organization (free license) and in my team already are 5 developers. Now we need to change one's developer email. Can user be deleted and added with new email address? I am not rushing to do that my self because afraid that if user will be deleted wont be able to add again. Have someone had this experience?

CodePudding user response:

Can user be deleted and added with new email address?

As per the Documentation. A free License can have 5 users but not more than that so you can delete and readd users but it should be only 5

enter image description here

Below are the commands to add and delete the users

To Delete User

az devops user remove --user
                      [--org]
                      [--yes]

To Remove email address

az devops user remove --user [email protected] --org https://dev.azure.com/contoso/ --yes

To Add user

az devops user add –-email-id 
           --license-type {stakeholder}
           [--send-email-invite {false, true}]
           [--org]

For further information check Delete User and Add User.

CodePudding user response:

I've contacted Microsoft support. And they told me that can't delete users and add again with different email. One solution is change exsisting account to stakeholder then add new one and set basic rights.

  • Related