If IT administrators plan to deploy both Reader and Acrobat with App-V 5.0 SP3 on the client machines, the users might encounter the issue while using Acrobat if they haven’t launched App-V Reader even once on their machines.
Reason for the issue: App-V Reader adds multiple “HKCU/Adobe/*” hives to App-V pass-through list which gets all these registry keys to be created outside of VREG on client machines.
To get the pass-through registry keys work correctly, HKCU/Adobe/Adobe Acrobat/{DC|2015} is required to be present in local registry hive on the machine. This key is created on the first launch of App-V Reader using the Runtime.bat script, similar to the one given in Acrobat Reader Sequencing Guidelines.
Try one of the following workarounds:
However, the script executes only for domain users, and throws error 534 if a local user tries to open App-V Adobe Acrobat.
Runtime.bat
@echo off
SET ChannelName=2015
REM Set the ChannelName to DC to run this script on Continuous track.
SET NativeKey="HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\%ChannelName%"
REG QUERY %NativeKey%
IF %ERRORLEVEL% EQU 0 GOTO EXIT
REG ADD %NativeKey%
:EXIT
DeploymentConfig.xml
<UserScripts>
<StartVirtualEnvironment RunInVirtualEnvironment="false">
<Path>cmd.exe</Path>
<Arguments>/c "[{AppVPackageRoot}]\..\Scripts\Runtime.bat"</Arguments>
<Wait RollbackOnError="false"/>
</StartVirtualEnvironment>
</UserScripts>
Sign in to your account