¿Por qué la sintaxis $ hash.key no funciona dentro del método ExpandString?

La siguiente secuencia de comandos de Powershell demuestra el problema:

$hash = @{'a' = 1; 'b' = 2}
Write-Host $hash['a']        # => 1
Write-Host $hash.a           # => 1

# Two ways of printing using quoted strings.
Write-Host "$($hash['a'])"   # => 1
Write-Host "$($hash.a)"      # => 1

# And the same two ways Expanding a single-quoted string.
$ExecutionContext.InvokeCommand.ExpandString('$($hash[''a''])') # => 1
$ExecutionContext.InvokeCommand.ExpandString('$($hash.a)')      # => Oh no!

Exception calling "ExpandString" with "1" argument(s): "Object reference not set to an instance of an object."
At line:1 char:1
+ $ExecutionContext.InvokeCommand.ExpandString('$($hash.a)')
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : NullReferenceException

Alguien sabe por qué el$hash.key ¿La sintaxis funciona en todas partes pero dentro de la expansión explícita? ¿Se puede arreglar esto, o tengo que absorberlo y vivir con el$hash[''key''] ¿sintaxis?

Respuestas a la pregunta(3)

Su respuesta a la pregunta