Add-MSDeploymentUnitsToBlueprint

Add Deployment Units to Blueprints

Syntax


Add-MSDeploymentUnitsToBlueprint -DeployUnitIds (Array) -BlueprintId (Int32)

Add-MSDeploymentUnitsToBlueprint -DeployUnitIds (Array) -BlueprintPath (String) [-CreateIfNotFound]

Examples


## Add Deployment Units to a Blueprint by Id
Add-MSDeploymentUnitsToBlueprint -DeployUnitIds @(275, 276, 277) -BlueprintId 1600

## Add Deployment Units to a Blueprint by path, creating if it doesn't exist already
Add-MSDeploymentUnitsToBlueprint -DeployUnitIds @(275, 276, 277) -BlueprintPath 'Location\AMER\United States\Mesa' -CreateIfNotFound