-
Are all of the functions of TfsCmdlets compatible with azure devops server 2020? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You're right - Azure DevOps Server 2020 does not have the API required for the As an workaround, you can try the following to get a single group:
However, if you're trying to enumerate the groups of said project, then there's another workaround. The basic idea here is to via the members of the Project Valid Users group. It contains all valid users (and groups) in the given team project. From there, you can get the groups you're looking for:
HTH! I'm adding a fix to it to the backlog, so that Azure DevOps Server users can user Get-TfsGroup in the future. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick response Igor! I will try your suggested workarounds. |
Beta Was this translation helpful? Give feedback.
You're right - Azure DevOps Server 2020 does not have the API required for the
Get-TfsGroup
cmdlet.As an workaround, you can try the following to get a single group:
However, if you're trying to enumerate the groups of said project, then there's another workaround. The basic idea here is to via the members of the Project Valid Users group. It contains all valid users (and groups) in the given team project. From there, you can get the groups you're looking for: