< Back

Get-UevConfiguration

Wed Jan 30, 2019 6:05 pm

NAME Get-UevConfiguration



SYNOPSIS

Gets the UE-V configuration settings.





SYNTAX

Get-UevConfiguration -Computer [<CommonParameters>]



Get-UevConfiguration -CurrentComputerUser [<CommonParameters>]



Get-UevConfiguration -Details [<CommonParameters>]





DESCRIPTION

The Get-UevConfiguration cmdlet gets the Microsoft User Experience Virtualization (UE-V) configuration settings. If you specify the Computer parameter,

the cmdlet gets the settings for all users on the computer. If you specify the CurrentComputerUser parameter, the cmdlet gets the settings for just the

current user.





PARAMETERS

-Computer <SwitchParameter>

Indicates that the cmdlet gets the UE-V configuration settings for all users on the computer.



Required? true

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-CurrentComputerUser <SwitchParameter>

Indicates that the cmdlet gets the UE-V configuration settings for the current user only.



Required? true

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-Details <SwitchParameter>

Indicates that the cmdlet gets the UE-V configuration settings, including all of the details.



Required? true

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS









OUTPUTS

System.Collections.Generic.Dictionary, System.Collections.Generic.KeyValuePair



This cmdlet generates a KeyValuePair object that represents the setting name and value, if you specify a setting name. Otherwise, this cmdlet

generates a list of all of the settings.





NOTES





A setting value can be from four sources (in order of precedence): group policy settings for the current user, group policy settings for the local

computer, the current user, and the local computer. If no setting value is found in any of the sources, UE-V uses the default setting.





Example 1: Get the uev_tla configurationuev_tla



PS C:\\> Get-UevConfiguration





Key Value

--- -----

MaxPackageSizeInBytes 700000

SettingsImportNotifyDelayInSeconds 10

SettingsImportNotifyEnabled False

SettingsStoragePath \\\\ServerName\\Path\\To\\CentralStore

SettingsTemplateCatalogPath

SyncEnabled True

SyncMethod OfflineFiles

SyncFromRepositoryTimeoutInMilliseconds 2000



This command gets the active UE-V configuration on the computer where you run the cmdlet.





Example 2: Get the computer-wide configuration



PS C:\\> Get-UevConfiguration -Computer





Key Value

--- -----

MaxPackageSizeInBytes 700000

SettingsImportNotifyDelayInSeconds

SettingsImportNotifyEnabled

SettingsStoragePath \\\\ServerName\\Path\\To\\CentralStore

SettingsTemplateCatalogPath

SyncEnabled

SyncMethod OfflineFiles

SyncFromRepositoryTimeoutInMilliseconds 2000



This command gets the UE-V configuration settings for all users on the computer. The command gets the HKey Local Machine (HKLM) configuration settings

that are in the registry.





Example 3: Get the user-specific configuration



PS C:\\> Get-UevConfiguration -CurrentComputerUser





Key Value

--- -----

MaxPackageSizeInBytes

SettingsImportNotifyDelayInSeconds

SettingsImportNotifyEnabled

SettingsStoragePath

SyncEnabled

SyncMethod

SyncFromRepositoryTimeoutInMilliseconds



This command gets the user-specific UE-V configuration, including the HKey Current User (HKCU) configuration settings that are in the registry.







RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=826047

Set-UevConfiguration

Clear-UevConfiguration

Import-UevConfiguration

Export-UevConfiguration