Hi
I would like to do this :
$list="get-command","get-service"
foreach ($l in $list)
{
echo $l
foreach($i in $l)
{
$a=$i.name
echo $a
}
}
The probleme is :
The variable in the second foreach ($ l) appears to be seen as a string and
not a command.do anyone have an idea ?
Thanks


