En PowerShell, comment obtenir la valeur d'une propriété d'un objet en spécifiant son nom (une chaîne de caractères) ? Je veux quelque chose comme ce qui suit :
$obj = get-something
# View the object's members:
$obj | gm
# I could retrieve a property by doing so:
write-host $obj.SomeProp
# But for many purposes, I would really want to:
write-host $obj | Get-PropertyByName "SomeProp"
Existe-t-il quelque chose de similaire à "Get-PropertyByName" dans PowerShell ?