App-V Applications and the CVE-2021-44228 Apache Log4j Exploit

$packageRoot = Get-AppvClientConfiguration | where Name -eq PackageInstallationRoot | Select -ExpandProperty Value $packageRoot = [System.Environment]::ExpandEnvironmentVariables($packageRoot) $jarFiles = gci ($packageRoot) -rec -force -filter *.jar -ea 0 | where Name -like “*log4j*” | select -ExpandProperty FullName foreach ($jarfile in $jarFiles) { $PackageId … Continue reading