Get-AppvClientConnectionGroup
Get-AppvClientConnectionGroup is accessible with the help of AppVClient module. To configure AppVClient, go through this link.
Synopsis
Returns an App-V connection group object.
Description
The Get-AppvClientConnectionGroup cmdlet returns a specific Microsoft Application Virtualization (App-V) connection group object.
Parameters
-All
Indicates that the cmdlet returns all connection groups that have been added to the computer, not just those that are enabled to the current user.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-GroupId
Specifies the GUID of specific connection group.
Type: | Guid |
Position: | 0 |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Specifies the name of the App-V Connection Group.
Type: | String |
Position: | 0 |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VersionId
Specifies a GUID that differentiates a package version from other versions, whether older, newer, or of a different lineage. If you do not specify this parameter, the cmdlet operates on all versions of the package.
Type: | Guid |
Position: | 1 |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Syntax
Get-AppvClientConnectionGroup [[-Name] <String>] [-All] [<CommonParameters>]
Get-AppvClientConnectionGroup [-GroupId] <Guid> [[-VersionId] <Guid>] [-All] [<CommonParameters>]
——————-Example 1——————-
Get all versions of a group by name
PS C:\> Get-AppvClientConnectionGroup -Name “AppConnectionGroup”
This command gets all versions of the enabled connection groups named AppConnectionGroup.
——————-Example 2——————-
Get a connection group by using its ID
PS C:\> Get-AppvClientConnectionGroup -GroupID<Group ID>
This command gets the enabled connection group that has the group ID of <Group ID>.
——————-Example 3——————-
Get all connection groups
PS C:\> Get-AppvClientConnectionGroup -All
This command gets all of the connection groups on the computer.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Get-AppvClientConnectionGroup
You can also read about
- Add-AppvClientConnectionGroup
- Disable-AppvClientConnectionGroup
- Enable-AppvClientConnectionGroup
- Mount-AppvClientConnectionGroup
- Remove-AppvClientConnectionGroup
- Repair-AppvClientConnectionGroup
- Stop-AppvClientConnectionGroup