Skip to content

Get OctopusProjectGroup

Dalmiro edited this page May 24, 2015 · 18 revisions

###Summary Gets information about Octopus Project Groups

###Syntax

Get-OctopusProjectGroup [[-ProjectGroupName] <String[]>] [<CommonParameters>]    

###Examples EXAMPLE 1

Get all the Project Groups on the Octopus instance

PS C:\>Get-OctopusProjectGroup

EXAMPLE 2

Get a Project Group named "MyProjects"

PS C:\>Get-OctopusProjectGroup -name "MyProjects"

EXAMPLE 3

Get all the Project Groups with the word "web" on their name

PS C:\>Get-OctopusProjectGroup -name "*web*"

EXAMPLE 4

Get all the projects that are on the same group as the project "MyProject"

PS C:\>Get-OctopusProject "MyProject" | Get-OctopusProjectGroup | select -ExpandProperty projects | Get-OctopusProjects
Clone this wiki locally