ACTFLG_*

The ACTFLG_* constants are used in the PACKAGEDETAIL structure to indicate details of how a package is to be installed or activated.

const DWORD ACTFLG_RunLocally = 1; 
    const DWORD ACTFLG_RunOnce = 2; 
    const DWORD ACTFLG_SystemWide = 4; 
    const DWORD ACTFLG_Published = 8; 
    const DWORD ACTFLG_Assigned = 16; 
    const DWORD ACTFLG_UserInstall = 32; 
 

Constants

ACTFLG_RunLocally
Used in conjunction with ExeNamePath and DllNamePath of the CLASPATHTYPE enumeration to indicate if the binary should be copied to a local file by IE code-download. If this flag is not specified for these elements, the binary is registered and run directly from the location indicated in szPath of the PACKAGEDETAIL structure.
ACTFLG_RunOnce
Not currently implemented.
ACTFLG_SystemWide
Not currently implemented.
ACTFLG_Published
Indicates that the package is a published package and appears in the user interface.
ACTFLG_Assigned
Indicates that the package is an assigned application and is automatically advertised at profile-refresh time.
ACTFLG_UserInstall
Not currently implemented.

See Also

PACKAGEDETAIL