Summary

Gets information about Octopus Project Groups

Parameters

Name DataType Description
ProjectGroupName String[] Project Group name
ResourceOnly Switch If set to TRUE the cmdlet will return the basic Octopur resource. If not set or set to FALSE, the cmdlet will return a human friendly Octoposh output object

Syntax


Get-OctopusProjectGroup [[-ProjectGroupName] <string[]>] [-ResourceOnly <SwitchParameter>] 
[<CommonParameters>]




Examples

EXAMPLE 1

Gets all the Project Groups on the Octopus instance

 Get-OctopusProjectGroup

EXAMPLE 2

Gets a Project Group named "MyProjects"

 Get-OctopusProjectGroup -name "MyProjects"

EXAMPLE 3

Get all the projects whose name matches the pattern "web"

 Get-OctopusProjectGroup -name "*web*"