DeployEx method
- Last UpdatedJul 23, 2024
- 1 minute read
Deploys the instances in the given collection of objects.
Class
IgObjects
Syntax
[C#]
void DeployEx(
EActionForCurrentlyDeployedObjects actionForDeployedObjects,
ESkipIfCurrentlyUndeployed skipIfCurrentlyUndeployed,
EDeployOnScan deployOnScan,
EForceOffScan forceOffScan,
bool markAsDeployedOnStatusMismatch,
string strCustomData
);
[Visual C++]
HRESULT DeployEx(
// Action for currently deployed object
[in, optional, defaultvalue( skipDeploy )] EActionForCurrentlyDeployedObjects actionForDeployedObjects,
// Action for currently undeployed object
[in, optional, defaultvalue( dontSkipIfCurrentlyUndeployed )] ESkipIfCurrentlyUndeployed skipIfCurrentlyUndeployed,
// Deploy on scan
[in, optional, defaultvalue( doDeployOnScan )] EDeployOnScan deployOnScan,
// Force off scan
[in, optional, defaultvalue( doForceOffScan )] EForceOffScan forceOffScan,
// Deploy status mismatch
[in, optional, defaultvalue( 1 )] VARIANT_BOOL markAsDeployedOnStatusMismatch,
// Data used by custom category package
[in, optional, defaultvalue("")] BSTR strCustomData
);