AzurePipelinesPS icon indicating copy to clipboard operation
AzurePipelinesPS copied to clipboard

A PowerShell module that makes interfacing with Azure Pipelines a little easier

Results 5 AzurePipelinesPS issues
Sort by recently updated
recently updated
newest added

I installed the PS module, and got 4.0.25 even though 4.0.13 is the "latest" listed here on github. The readme here has an example login process using a deprecated Version...

Now that DevOps support managed identities I would like to use that to automate some tasks rather than using a PAT. Previously I used this code to connect from an...

PS C:\WINDOWS\system32> Copy-APDashboard -Name 'AppLens' -Session 'source' -TargetSession 'target' Copy-APDashboard : [Copy-APDashboard]: Unable to locate a dashboard named [AppLens] in [app-service-diagnostics-portal]\[app-service-diagnostics-portal] At line:1 char:1 + Copy-APDashboard -Name 'AppLens' -Session 'source'...

I am trying to generate a list of users that have permissions for a certain repository in an Azure DevOps project, following [your tutorial on stack overflow](https://stackoverflow.com/questions/63450768/how-to-list-the-groups-user-who-has-permissions-to-the-project-repo-with-azure-d/63453972#63453972). After creating the...

I'm using this module as a step in a GitHub Action workflow. ```yaml - name: Queue build env: AZURE_DEVOPS_TOKEN: ${{ secrets.AZURE_DEVOPS_TOKEN }} shell: pwsh run: | Install-Module AzurePipelinesPS -Repository PSGallery...