Sequencing Java Runtime Environment (JRE) 8u91 with App-V 5.1

There are various forums and websites around with information on this however I thought I’d share a step by step guide I created.

      1. Download JRE 8u91 x86 and run it on the sequencer VM
      2. Browse to %userprofile%\AppData\LocalLow\Oracle\Java\hre1.8.0_91 and copy the msi to C:\1
      3. Cancel the Java setup
      4. Launch the sequencer with the following command
      5. Open the sequencer and add the following path to the exclusions
      6. Click on Create New App-V Package then Create Package (default)
      7. Click Next
      8. Click Next
      9. Select custom installation and click next
      10. Enter a name and a PVAD which we’re NOT going to use
      11. Now run the msi using the following command. Give it some time to complete.
      12. Once complete, create the following registry key
      13. Create another registry key
      14. Use notepad (run as administrator) to edit the deployment.properties document under this location
      15. Add these two lines to the bottom and save
      16. Check I am finished installing and click Next
      17. Click Next
      18. Click Next
      19. Click Next
      20. Select Continue to modify package… and click Next
      21. IMPORTANT – Ensure this folder is set to override the local directory. This ensures that another other versions of Java (packaged or local) do not take priority over this version.
      22. IMPORTANT – Ensure write permission to the VFS is permitted. Allows the package to write the deployment.config file back to the VFS.

Group Policy

Get the Class ID of the Java Add-Ons by going into IE and Manage Addons.

Now create a Group Policy or create a new one and go to

Computer Configuration\Policies\Administrative Templates\Windows Components\Internet Explorer\Security Features\Add-on Management

Open the Add-on List GPO and pick Enabled then click Show

In the Value Name put the copied Class ID followed by a 2 in the next field.

0 = Disabled, 1 = Enabled (user can’t edit), 2 = Enabled (user can edit)

 

 

Sequencing Deltek Cobra 5.1 with Microsoft App-V 5.0

An issue arises following the sequencing and deployment of Deltek Cobra 5.1 whereby the application fails to launch. After some investigation it turned out that a file named DeltekCobraWorkstation.xml needs to exist within the Cobra 5 installation directory and MUST contain the correct hostname of the machine running the application or it will not launch.

Parameter – <UpdateServer>\\HOSTNAME\CobraWorkstation</UpdateServer>

Obviously this is a problem when using App-V as the hostname of the sequencing machine will be captured within this file during the sequencing process. The solution I used was to write a script which dynamically creates the required file with the correct hostname parameter.

Here is the script I created. You pass it the path and it will generate the file in that location. I didn’t really need to include the ability to pass the path as a parameter as the path ended up just being “..\Root\Cobra 5” however I didn’t realise this when first writing the script as I wasn’t aware that there was an inbuilt folder location that your scripts are stored in by default.

Set objFSO=CreateObject(“Scripting.FileSystemObject”)

‘Get computer name from env variables
set oShell = WScript.CreateObject(“WScript.Shell”)
set oShellEnv = oShell.Environment(“Process”)
computerName = oShellEnv(“ComputerName”)

‘Get file path from parameter and assign to strPath
strPath = WScript.Arguments(0)

‘Create text file overwriting any existing file
if right(strPath, 1) <> “\” then
objFSO.CreateTextFile strPath & “\DeltekCobraWorkstation.xml”, true
else
objFSO.CreateTextFile strPath & “DeltekCobraWorkstation.xml”, true
end if

‘Assign new text file to objFile variable
Set objFile = objFSO.OpenTextFile(strPath & “\DeltekCobraWorkstation.xml”, 2, True)

‘Write a line to the text file
objFile.Write “” & vbCrLf
objFile.Write “” & vbCrLf
objFile.Write ” \\” & computerName & “\CobraWorkstation” & vbCrLf
objFile.Write ” 5.01.746″ & vbCrLf
objFile.Write “”

‘Close the file now we’re done
objFile.Close

I then added the following to the deploymentconfig.xml file and applied it to the App-V application via the management console.

    <UserScripts>
                <StartVirtualEnvironment RunInVirtualEnvironment=”true”>
                                <Path>cscript</Path>
                                <Arguments>writexml.vbs “..\Root\Cobra 5” > %TEMP%\cobra-deploy-log.txt</Arguments>
                                <Wait RollbackOnError=”true” />
                </StartVirtualEnvironment>
    </UserScripts> 

At first I couldn’t get it to work with the sequenced app so I read more into the scripting and found that I had it in the wrong place. I had it in the MachineConfig section under PublishPackage however it needed to be under the UserConfig scripting section and it had to be run as part of StartVirtualEnvironment as this would allow interaction with the Virtual Environment.

To run this script I needed to ensure that scripting had been enabled on the client machines.

Set-AppVClientConfiguration -EnablePackageScripts 1

After that I ran Cobra 5.1 again and the script ran perfectly and brought me to the Cobra logon screen.