CeVersionAppMgr

This variable contains the product version number of the ActiveSync CE Application Manager program in the format a.b.c.d, or 0.0.0.0 if that program is not installed on the target system.

The CE Application Manager program is used to install and remove applications on Windows Mobile devices. It is part of the Microsoft ActiveSync software that is typically installed on desktop systems that connect to Windows Mobile devices. The full path to the program is available through the CeAppMgr variable.

Usage

You can refer to this variable as <CeVersionAppMgr>. Do not change this variable; it was configured for cross-platform compatibility.

To check for a particular version, you can use a conditional expression with the $vercmp() runtime function. For example, to test for CE Application Manager version 4.5 or later, use a condition like the following:

<$vercmp(<CeVersionAppMgr>, 4.5)> >= 0 

Or using the simplified version comparisons and eliding the < and > that are redundant for variables in conditional expressions:

CeVersionAppMgr >= 4.5 

Related topics

CeAppMgr, Windows Mobile variables