Guest User

Untitled

a guest
Jun 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. get-view -viewtype virtualmachine | %{
  2. $vm = $_.name
  3. $vm.mac = @()
  4. $_.Config.Hardware.Device | ?{ $_.MacAddress } | %{ $vm.mac += $_.MacAddress };
  5. $vm
  6. } | format-table -wrap
Add Comment
Please, Sign In to add comment