Skip to content

Latest commit

History

History
107 lines (79 loc) · 3.13 KB

File metadata and controls

107 lines (79 loc) · 3.13 KB
external help filecore-help.xml
Module Namecore
online versionhttps://github.com/Azure-Devops-PowerShell-Module/core/blob/master/docs/Get-AzDevOpsProcess.md#get-azdevopsprocess
schema2.0.0

Get-AzDevOpsProcess

SYNOPSIS

Get one or more available processes

SYNTAX

Get-AzDevOpsProcess [[-ProcessId] <Guid>] [<CommonParameters>]

DESCRIPTION

This function will return one or more Processes from Azure DevOps.

EXAMPLES

Example 1

PS C:\>Get-AzDevOpsProcess
id : 27450541-8e31-4150-9947-dc59f998fc01
description : This template is for more formal projects requiring a framework forprocess improvement and an auditable record of decisions.
isDefault : False
type : system
url : https://dev.azure.com/patton-tech/_apis/process/processes/27450541-8e31-4150-9947-dc59f998fc01
name : CMMI
id : 6b724908-ef14-45cf-84f8-768b5384da45
description : This template is for teams who follow the Scrum framework.
isDefault : False
type : system
url : https://dev.azure.com/patton-tech/_apis/process/processes/6b724908-ef14-45cf-84f8-768b5384da45
name : Scrum
id : adcc42ab-9882-485e-a3ed-7678f01f66bc
description : This template is flexible and will work great for most teams using Agile planning methods, including those practicing Scrum.
isDefault : True
type : system
url : https://dev.azure.com/patton-tech/_apis/process/processes/adcc42ab-9882-485e-a3ed-7678f01f66bc
name : Agile
id : b8a3a935-7e91-48b8-a94c-606d37c3e9f2
description : This template is flexible for any process and great for teams getting started with Azure DevOps.
isDefault : False
type : system
url : https://dev.azure.com/patton-tech/_apis/process/processes/b8a3a935-7e91-48b8-a94c-606d37c3e9f2
name : Basic

Get a list of all processes

Example 1

PS C:\>Get-AzDevOpsProcess-ProcessId 27450541-8e31-4150-9947-dc59f998fc01
id : 27450541-8e31-4150-9947-dc59f998fc01
description : This template is for more formal projects requiring a framework forprocess improvement and an auditable record of decisions.
isDefault : False
_links : @{self=}
type : system
url : https://dev.azure.com/patton-tech/_apis/process/processes/27450541-8e31-4150-9947-dc59f998fc01
name : CMMI

Get a specific process

PARAMETERS

-ProcessId

The Process ID

Type: GuidParameter Sets: (All)Aliases:
Required: FalsePosition: 0Default value: NoneAccept pipeline input: FalseAccept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

RELATED LINKS

Connect-AzDevOpsOrganization