Get-AppvClientConfiguration

Returns the configuration for the App-V client.

Syntax

Get-AppvClientConfiguration
   [[-Name] <String>]
   [<CommonParameters>]

Description

The Get-AppvClientConfiguration cmdlet returns an object containing all of the settings and permissions for the Microsoft Application Virtualization (App-V) client. These settings include both App-V client settings and permissions.

In the case where a particular setting is asked for, the cmdlet will return the value for that specific setting.

Examples

Example 1: Display all configuration settings

PS C:\> Get-AppvClientConfiguration

This command displays all of the App-V Client Configuration settings.

Example 2: Display a single configuration setting

PS C:\> Get-AppvClientConfiguration -Name "PackageSourceRoot"

This command displays the value of the PackageSourceRoot setting.

Parameters

-Name

Not Specified.

Type:String
Position:0
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Outputs

Microsoft.AppV.AppvClientPowerShell.AppvClientConfiguration

In you do not specify any parameters, the cmdlet returns an AppvClientConfiguration object. The object is displayed as a two column table. The first column contains the specific configuration and the second column contains the associated current value.

If you specify the Name parameter, the cmdlet returns the same two column table, but only for the configuration requested.