45 lines
1.3 KiB
PowerShell
45 lines
1.3 KiB
PowerShell
'$Configuration[''fullname'']'
|
|
$Configuration['fullname']
|
|
'$Configuration.''fullname'''
|
|
$Configuration.'fullname'
|
|
'$Configuration.Item(''fullname'')'
|
|
$Configuration.Item('fullname')
|
|
'$Configuration[0]'
|
|
$Configuration[0]
|
|
'$Configuration.Item(0)'
|
|
$Configuration.Item(0)
|
|
' '
|
|
'=== $Configuration[''otherfamily''] ==='
|
|
$Configuration['otherfamily']
|
|
'=== $Configuration[''otherfamily''][0] ==='
|
|
$Configuration['otherfamily'][0]
|
|
'=== $Configuration[''otherfamily''][1] ==='
|
|
$Configuration['otherfamily'][1]
|
|
' '
|
|
'=== $Configuration.''otherfamily'' ==='
|
|
$Configuration.'otherfamily'
|
|
'=== $Configuration.''otherfamily''[0] ==='
|
|
$Configuration.'otherfamily'[0]
|
|
'=== $Configuration.''otherfamily''[1] ==='
|
|
$Configuration.'otherfamily'[1]
|
|
' '
|
|
'=== $Configuration.Item(''otherfamily'') ==='
|
|
$Configuration.Item('otherfamily')
|
|
'=== $Configuration.Item(''otherfamily'')[0] ==='
|
|
$Configuration.Item('otherfamily')[0]
|
|
'=== $Configuration.Item(''otherfamily'')[1] ==='
|
|
$Configuration.Item('otherfamily')[1]
|
|
' '
|
|
'=== $Configuration[3] ==='
|
|
$Configuration[3]
|
|
'=== $Configuration[3][0] ==='
|
|
$Configuration[3][0]
|
|
'=== $Configuration[3][1] ==='
|
|
$Configuration[3][1]
|
|
' '
|
|
'=== $Configuration.Item(3) ==='
|
|
$Configuration.Item(3)
|
|
'=== $Configuration.Item(3).Item(0) ==='
|
|
$Configuration.Item(3).Item(0)
|
|
'=== $Configuration.Item(3).Item(1) ==='
|
|
$Configuration.Item(3).Item(1)
|