I like to use GetEnumerator()
when looping a hashtable. It will give you a property value
with the object, and a property key
with it's key/name. Try:
$myHash.GetEnumerator() | % {
Write-Host "Current hashtable is: $($_.key)"
Write-Host "Value of Entry 1 is: $($_.value["Entry 1"])"
}