-
Notifications
You must be signed in to change notification settings - Fork 46
Get OctopusProjectGroup
Dalmiro edited this page Jun 7, 2015
·
18 revisions
###Summary Gets information about Octopus Project Groups
###Parameters
Name | DataType | Description |
---|---|---|
ProjectGroupName | String[] | Name of the Project Group |
###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
Getting Started
Cmdlets & Examples
- Get-OctopusChannel
- Get-OctopusConnectionInfo
- Get-OctopusDashboard
- Get-OctopusDeployment
- Get-OctopusEnvironment
- Get-OctopusFeed
- Get-OctopusLifecycle
- Get-OctopusMachine
- Get-OctopusProject
- Get-OctopusProjectGroup
- Get-OctopusRelease
- Get-OctopusResourceModel
- Get-OctopusServerThumbprint
- Get-OctopusTagSet
- Get-OctopusTeam
- Get-OctopusTenant
- Get-OctopusToolPath
- Get-OctopusToolsFolder
- Get-OctopusToolVersion
- Get-OctopusUser
- Get-OctopusVariableSet
- Install-OctopusTool
- New-OctopusConnection
- New-OctopusResource
- Remove-OctopusResource
- Set-OctopusConnectionInfo
- Set-OctopusReleaseStatus
- Set-OctopusToolPath
- Set-OctopusToolsFolder
- Update-OctopusResource
Advanced Examples
Real Life Scenarios
Release Notes