Friday, December 04, 2015

AppV5 - Sequencing an application that has Com+ Applications

AppV has a few weaknesses, one of them is Com+ Objects.  It doesn't like Com+ Objects and sequencing an application with them generally results in this error message:


The Resolution seem easy enough:
1) Try extracting and installing the COM+ component natively on both sequencing station and the client
2) Thoroughly test your virtual application package to verify functionality.

But how do you extract the COM+ components?

1) Open 'Component Services'

2) Expand until you find your Com+ Applications, right-click and select 'Export'


3) Click 'Next'

4) Enter a path to save your MSI then click 'Next'

5) Click 'Finish'


Since this application had two Com+ Applications I exported my second one as well:





To ensure they work, I took them to our XenApp Test server and installed them.



Both *appeared* to have installed correctly.  But this application requires the Com+ Application to run under a service account.  Checking the original install:




I can see under the 'Identity' tab that it is configured for 'This user:'.  I then checked the MSI install on the XenApp Test server and looked at the Identity tab:



It appears it defaults to 'System Account' even though I selected 'Export user identities with roles'.  To change the user account silently, I used this script supplied by the vendor (as a encrypted vbe):


This script changes the user account on the Com+ applications to use the proper account.  When browsing the properties of the components of the SFSQL object I saw it referenced the dll to it:





Fortunately, it seems these files are captured by the MSI export of the Com+ Application.

To test everything now, I must now create my AppV package.  Before doing the install I installed my prerequisites (the Com+ Applications) into the Sequencer so they are not captured by the package.

I ran this script to do my prereq install:



Now I startup the sequencer and do my sequencing first steps.

I selected a batch file I created for the install (per the vendor's initial instructions):




Once the install completed I saved my package and took it to my XenApp Test server and published the application and ran it.

No, this is not correct


For some reason my application was failing.  I double checked the COM+ Applications are installed and appear to be working, so I opened Procmon.exe to see if I can find where it's going wrong:


I've used procmon enough now to practically pull the old' Matrix, "blonde, brunette, red head".  Working from bottom to top, the message box is generated from the 'Text' (LanguagePack) back to the KernelBase.dll.  So we can exclude that has the cause, this is telling us *of* the issue.  So if we look at the lines preceding it, one of them must be causing our message.


Looking at the first keys, the OLE keys, I can compare them to my sequencer and they match exactly, so the likelihood of them causing our issues is none.


So we go back a little further to the AppID key and jumping to the *SUCCESS* location to look at it's value...



I am on a server called WSCTXAPP301T but the registry key for this value is pointing to the system I did my sequencing on.  I changed the value to the actual server name and did a registry search for "WSAPVSEQ07" to see if it appeared anywhere else.  It did in one other location so I modified the value there as well to point to the local server:

And tested my application again:


Success!  The login screen.  This is as far as I can take this app until I get credentials or a user to login and try testing for me.  So, for now, I can create a preflight-script to setup some prerequisites when the application is published.  I modified my preflight script to include the two registry values being updated:


Then I updated the Deployment_Config.xml file for this application:

Lastly, I logged onto a new, fresh, system and manually tested my XML file by publishing from the command line:



Using Procmon to monitor to ensure the prerequisites get installed:



"Exit Status: 0" --> Usually a good thing :)
Testing the application:
Looks good

Then testing removal and monitoring with Procmon:


Com+ Application are removed cleanly :)
So everything looks good and I can now add this application to our AppV Management Server and deploy it to the machines that need it.

No comments: