Automation

 View Only
  • 1.  Navigating Inside Nested vApps

    Posted Sep 17, 2013 12:54 AM

    Hi,

    How do I navigate inside nested vApps? For example, there is a vApp named 'foo' which contains another vApp called 'bar'.  How would I create another sibling at the same level as 'bar' in powerCLI?

    Thanks,

    -T



  • 2.  RE: Navigating Inside Nested vApps

    Posted Sep 17, 2013 03:19 AM

    Hello, -

    The Move-VApp cmdlet should come in handy here. So, if you wanted to move vApp "bar2" to the same spot as vApp "bar" (under vApp "foo"), you could use something like:

    Move-VApp -VApp bar2 -Destination (Get-VApp foo)

    How does that do for you?