James Brundage
James Brundage
@mkielek thanks for reporting this. I think I've seen some issues with git and multibyte characters before. Do you have a repo you can point me to that helps reproduce...
@bryanbcook Your timing is good, as Update-SQL is getting some updates. Update-SQL and Select-SQL are designed to give you a PowerShell-friendly object, so the .PSTypeName behavior is "by design". You...
@antdimot this is a nifty little script. Are you suggesting updates to Start-ADOBuild?
@antdimot this can already be done in a fairly PowerShell happy way, via the magic of the object pipeline and ValueFromPipelineByPropertyName. It would be a bit easier with different column...
@JJKW1984 It's neither. It's just that Azure DevOps is a bit of a punk when it comes to API naming. _Teams_ are a concept that is truly locked down to...
Ah. It does look like that API is covered. It appears to be the default parameter set of Get-ADOTeam. I wonder, are you using Connect-ADO with a -Project?
Hmm. This may be a pagination issue then. This is another thing Azure DevOps does inconsistently. Could you try using Invoke-ADORestApi to call the api directly (providing `$top=100&$skip=0`)?
@danroot Thanks for the issue. I'd love it if there was an easy way to get the PAT after az login. If you know of one, or see any environment...
0.4.5 (updated in PR #49) contains Remove-ADOAgentPool, which should remove pools, queues, and agents. I'll be adding New-ADOAgentPool, which should create pools, queues, and agents, in a future build. Please...
@rwaal You can avoid the prompts by passing -Confirm:$false, an explanation of the general PowerShell behavior is below. -WhatIf/-Confirm are actually very old PowerShell language features related to process confirmation....