Add-MSModuleItemsToBlueprint
Add Apps, User Migrations, Devices etc to Blueprints
Syntax
Add-MSModuleItemsToBlueprint -Module (String) -Ids (Int32[]) -BlueprintId (Int32)
Add-MSModuleItemsToBlueprint -Module (String) -Ids (Int32[]) -BlueprintPath (String) [-CreateIfNotFound] [-ExclusivePath (String)]
Examples
## Add Apps to a Blueprint by Id
Add-MSModuleItemsToBlueprint -Module Applications -Ids @(275, 276, 277) -BlueprintId 1600
## Add Apps to a Blueprint by path, creating if it doesn't exist already
Add-MSModuleItemsToBlueprint -Module Applications -Ids @(275, 276, 277) -BlueprintPath 'Location\AMER\United States\Mesa' -CreateIfNotFound