Tipo genérico de tipo genérico em Powershell

Bem genéricos em Powershel são bastante confusos. Para instanciar uma lista simples, você precisa dançar com um pandeiro:

$type = ("System.Collections.Generic.List"+'`'+"1") -as "Type"
$type= $type.MakeGenericType("System.string" -as "Type")
$o = [Activator]::CreateInstance($type)

Mas e se eu precisar de algo um pouco mais complexo como:<Dictionary<string,List<Foo>> por exemplo

ou por exemplo aqui:Dictionary<string,List<string>>

$listType = ("System.Collections.Generic.List"+'`'+"1") -as "Type"
$listType = $listType.MakeGenericType("System.string" -as "Type")
$L = [Activator]::CreateInstance($listType)

$dicType = ("System.Collections.Generic.Dictionary"+'`'+"2") -as "Type"

#the next line is problematic
$dicType = $dicType.MakeGenericType( 
     @( ("system.string" -as "Type"), 
        ("System.Collections.Generic.List" as "Type)) # and that's of course wrong
      )

$D = [Activator]::CreateInstance($dicType )

questionAnswers(4)

yourAnswerToTheQuestion