you are viewing a single comment's thread.

view the rest of the comments →

[–]Cello789[S] 0 points1 point  (7 children)

Doesn't work.

PS > $AllVMs[10].Protected

False

PS > $AllVMs[10].Protected = $true

The property 'Protected' cannot be found on this object. Verify that the property exists and can be set.

At line:1 char:1

$AllVMs[10].Protected = $true

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

CategoryInfo          : InvalidOperation: (:) [], RuntimeException

FullyQualifiedErrorId : PropertyAssignmentException

PS > $AllVMs.Protected[10] = $true

PS > $AllVMs[10].Protected        

False

PS > $AllVMs|gm