PowerShell Script to get App-V Client version:
$AppVClientVersionRegLoc= 'HKLM:\SOFTWARE\Microsoft\AppV\Client'
$AppVClientVersion = Get-ItemProperty -Path $AppVClientVersionRegLoc -Name Version | Select-Object Version | Format-wide
Write-Host "Current App-V Client Version : " -ForegroundColor Green -NoNewline
$AppVClientVersion
Pause
function Pause
{
param([string] $pauseKey,
[ConsoleModifiers] $modifier,
[string] $prompt,
[bool] $hideKeysStrokes)
Write-Host -NoNewLine "Press $prompt to continue . . . "
do
{
$key = [Console]::ReadKey($hideKeysStrokes)
}
while(($key.Key -ne $pauseKey) -or ($key.Modifiers -ne $modifer))
Write-Host
}