Getting error while trying to disable Azure DevOps pipeline using Powershell
I am trying to disable a build pipeline on Azure DevOps using Powershell but getting an error Script: $project = "<Project-Name>" $organization = "<Org-Name>" $pat = "<PAT>" $base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($pat)")) $headers = @{ Authorization = "Basic $base64AuthInfo" "Content-Type" = "application/json"…