PowerShell module to automate tasks in Azure DevOps.
Explore the docs »
Installation | Module Documentation | License |
Automate tasks in Azure DevOps. Works on Windows, Linux and MacOS. There are a few good open-source projects already going on this topic (Like VS-Team), but we believe that this project in more user-friendly.
# PowerShell 7.3 and below
Install-Module -Name AzureDevOpsPowerShell -Scope CurrentUser
# PowerShell 7.4 and up
Install-PSresource -Name AzureDevOpsPowerShell -Scope CurrentUser
$Params = @{
CollectionUri = "https://dev.azure.com/contoso"
}
Get-AzDoProject @params
New-AzDoProject -CollectionUri "https://dev.azure.com/contoso" -ProjectName "Project 1"
Contributions are welcome! Open a pull request to fix a bug, or open an issue to discuss a new feature or change.