Introduction
At the time of writing this article App-V 5 is not natively supported by SCCM 2007. Publishing App-V 5 packages with SCCM 2007 requires either deploying the MSI which gets created by the sequencer, or create a custom Powershell script to perform the publishing tasks manually.
The limitation with deploying the MSI is that you cannot handle connection groups, and so you’ll end up with a hybrid approach of deploying MSIs for packages and powershell scripts for connection groups. On top of this, I don’t believe there is a way (using the MSI) to apply DeploymentConfig and UserConfig files at add/publish time respectively.
To circumvent these issues I’ve created an App-V 5 administration script which can be used with SCCM 2007 programs.
Command Line Parameters are:
Parameter: -av5Verb Possible Value(s): “add” “remove”
Parameter: -av5Object Possible Value(s): “package” “connectionGroup”
Parameter: -av5PackageName Possible Value(s): {Package Name – for example “Adobe-Reader-X”}
Parameter: -deploymentConfig Possible Value(s): “true” “false”
Parameter: -userConfig Possible Value(s): “true” “false”
Usage
1. Put the Powershell script inside the installation source folder, with any associated .appv/.xml files. In our example we’ll call the script AV5Admin.ps1:
2. Command lines for the SCCM program are as follows (be careful of the quotes in this blog post!! See ‘Things to Note’ below for more info!):
Add package (Publishes globally by default)
Add package and apply deployment config xml
Add package and apply user config xml
Remove package
Add connection group (connecting globally published packages)
Add connection group (connecting user published packages)
Remove connection group
Things to Note
- When creating your connection group XML file, the DisplayName attribute of the AppConnectionGroup tag should be set to the av5PackageName value. In the case of the example above, it should be set to “Adobe-Reader-X”.
- Be careful of dodgy quotes when copying and pasting. For example:
- By default, no XML (deployment or user) files are applied. If you specify a “true” value for -deploymentConfig the xx_deploymentConfig.xml file will be applied and the package will be published globally. If you specify a “true” value for -userConfig the xx_UserConfig.xml file will be applied and the package will NOT be published globally.
- If any XML files are applied, scripting is enabled on the App-V client.
- *UPDATE – Apparently Configuration Manager 2012 uses -ExecutionPolicy Bypass, as shown here: http://blogs.technet.com/b/virtualvibes/archive/2013/10/02/configuration-manager-2012-sp1-and-app-v-5-0-integration-more-than-meets-the-eye.aspx We have now used this in our command line, whilst also hiding the Powerhell console using -WindowStyle Hidden.
- Log files get written to C:\Windows\Security\Logs. For example, if you try to publish a connection group and some of the connected packages are not published on the machine, the appropriate error message will be written to a log file called {packagename}_add.log.
- Checks to see if the AppvClient module exists and is imported.
- Returns a code of 0 for success, and 1 for an error.
- **Important** If running a 32-bit SCCM agent on a 64-bit platform see this post, which explains why we MUST use the Sysnative alias when pointing to the powershell.exe.
The Script

