Update-AppvZeroPortalConnectionGroup

Increments the VersionGuid of a connection group so App-V clients detect the change.

Syntax

Update-AppvZeroPortalConnectionGroup -Name <string> -GroupGuid <Guid>

Description

Equivalent to Update-AppvServerConnectionGroup. Must be called after structural changes (adding/removing packages) so clients pick up the new configuration on the next publishing refresh.

Parameters

-Name <string>

Connection group name. Wildcard (*) is supported.

-GroupGuid <Guid>

GUID of the connection group. Accepts pipeline input from Get-AppvZeroPortalConnectionGroup.

Examples

Update-AppvZeroPortalConnectionGroup -GroupGuid '...'
# Typical workflow: swap package + update group
Remove-AppvZeroPortalConnectionGroupPackage -GroupGuid $g -PackageGuid $old -VersionGuid $oldV
Add-AppvZeroPortalConnectionGroupPackage    -GroupGuid $g -PackageGuid $new -VersionGuid $newV
Update-AppvZeroPortalConnectionGroup        -GroupGuid $g