Get-MSBespokesCustomFields

Get Custom Fields from Bespokes.

Syntax


Get-MSBespokesCustomFields -BespokeIds (Int32[]) [-Full] [-PreviousValue] [-IncludeBlanks] -FieldIds (Array)

Get-MSBespokesCustomFields -BespokeIds (Int32[]) [-Full] [-PreviousValue] [-IncludeBlanks] -FieldPaths (Array)

Get-MSBespokesCustomFields -BespokeIds (Int32[]) [-Full] [-PreviousValue] [-IncludeBlanks] -SectionIds (Array)

Get-MSBespokesCustomFields -BespokeIds (Int32[]) [-Full] [-PreviousValue] [-IncludeBlanks] -SectionPaths (Array)

Get-MSBespokesCustomFields -BespokeIds (Int32[]) [-Full] [-PreviousValue] [-IncludeBlanks] -CustomFormNames (Array)

Examples


## By Custom Form Field Ids
Get-MSBespokesCustomFields -FieldIds @(275, 276, 277, 1,2, 3,4,5,6,7,8) -BespokeIds @(8075, 8585, 8022, 1000, 8633) -PreviousValue

## By Custom Form Paths
Get-MSBespokesCustomFields -FieldPaths @("BespokeDiscovery\Rationalisation\Last Checked", "BespokeDiscovery\Rationalisation\Candidate for Rejection") -BespokeIds @(8075, 8585, 8022, 1000, 8633)

## By Custom Form Section Ids
Get-MSBespokesCustomFields -SectionIds @(1, 2) -BespokeIds @(8075, 8585, 8022, 1000, 8633)

## By Custom Form Section Paths
Get-MSBespokesCustomFields -SectionPaths @("BespokeDiscovery\Rationalisation") -BespokeIds @(8075, 8585, 8022, 1000, 8633)

## By Custom Form Names
Get-MSBespokesCustomFields -CustomFormNames @("bspkdsc") -BespokeIds @(8075, 8585, 8022, 1000, 8633)

## Pipe Ids in to the Get function
Get-MSBespokes -All -IdsOnly -Take 10 | Get-MSBespokesCustomFields -FieldIds @(275, 276, 277, 1,2, 3,4,5,6,7,8) -PreviousValue -IncludeBlanks