Hi LucD,
Thank you very much for your time and Input. Sorry, for my late reply, I got caught with something else today.
I played with the variable yesterday night and the only way I managed to get something was basicaly exporting-csv and then importing again.
This way, I had access directly to the data and proceeded this way.
======================
$esxcli.storage.vmfs.snapshot.list() | Export-Csv c:\scripts\test.csv
$newlun = Import-Csv C:\Scripts\test.csv
$nopersist = $true
$volumeLabel = $null
$esxcli.storage.vmfs.snapshot.mount($nopersist,$volumeLabel,$newlun.VMFSUUID)
======================
Looks uggly to me but it does the job.
I remember playing with $newlun[0] but can't remember if I tried your suggested command.
Shall give it a try and let you know
Many many thanks.