Mount-AppvClientConnectionGroup
Mount-AppvClientConnectionGroup is accessible with the help of AppVClient module. To configure AppVClient, go through this link.
Synopsis
Streams the contents of packages to the local disk.
Description
The Mount-AppvClientConnectionGroup cmdlet streams the contents of all packages in a connection group to the local disk.
Parameters
-ConnectionGroup
Specifies the Microsoft Application Virtualization (App-V) Connection Group object.
Type: | AppvClientConnectionGroup |
Position: | 0 |
Default value: | None |
Accept pipeline input: | True (ByValue) |
Accept wildcard characters: | False |
-GroupId
Specifies the group ID 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 the GUID that differentiates a Connection Group version from other versions. If you do not specify this parameter, the cmdlet operates on all versions of the connection group.
Type: | Guid |
Position: | 1 |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Syntax
Mount-AppvClientConnectionGroup [-GroupId] <Guid> [-VersionId] <Guid> [<CommonParameters>]
Mount-AppvClientConnectionGroup [-Name] <String> [<CommonParameters>]
Mount-AppvClientConnectionGroup [-ConnectionGroup] <AppvClientConnectionGroup> [<CommonParameters>]
——————-Example 1——————-
Download packages for a named group
PS C:\> Mount-AppvClientConnectionGroup -Name “AppGroup”
This command downloads all packages that are part of the enabled connection group named AppGroup.
——————-Example 2——————-
Download packages for a group by using group ID
PS C:\> Mount-AppvClientConnectionGroup -GroupID <GroupID>
This cmdlet downloads all the packages that are part of the enabled connection group that has the group ID <GroupID>
——————-Example 3——————-
Download packages for groups that match a string
PS C:\> Get-AppvClientConnectionGroup -Name “AppGr*” | Mount-AppvClientConnectionGroup
This command gets all enabled connection groups that have the string AppGr in the name, and then downloads all of the packages in those connection groups.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Mount-AppvClientConnectionGroup
You can also read about
- Add-AppvClientConnectionGroup
- Disable-AppvClientConnectionGroup
- Enable-AppvClientConnectionGroup
- Get-AppvClientConnectionGroup
- Remove-AppvClientConnectionGroup
- Repair-AppvClientConnectionGroup
- Stop-AppvClientConnectionGroup