Get-MSBespokes
Get groups of Bespokes. The results can be edited and fed back into Update-MSBespokes to apply bulk updates
Syntax
Get-MSBespokes -BespokeIds (Array) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -All [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -My [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -BlueprintId (Int32) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -BlueprintPath (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -BlueprintFolderId (Int32) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -BlueprintFolderPath (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -ProcessId (Int32) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -ProcessName (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -SubProcessId (Int32) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -SubProcessName (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -DeployUnitId (Int32) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -DeployUnitName (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -Archived [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -Locked [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -Deleted [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -DropdownValue (String) -Dropdown (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Get-MSBespokes -TeamMemberName (String) -TeamMemberType (String) [-SearchTerm (String)] [-Take (Int32)] [-Skip (Int32)] [-IdsOnly] [-Count]
Examples
## Get a list of known Bespokes by their Ids
Get-MSBespokes -Ids @(1000,1001,1002)
## Get a list of Bespokes in a Blueprint
Get-MSBespokes -BlueprintPath "Departments\Operations\Purchasing"
## Get a list of Bespokes in the 'Identified' Process
Get-MSBespokes -ProcessName "1. Identified"
## Get a list of Locked, Archived, or Deleted Bespokes
Get-MSBespokes -Locked
Get-MSBespokes -Archived
Get-MSBespokes -Deleted
## Get a count of ALL Bespokes in database
(Get-MSBespokes -All).Count