Hello,
-
You can use the -Location parameter to New-Folder. To create a network folder in a given datacenter, do something like:
## new network folder in the given datacenter
New-FoldertestInNetwk-Location (Get-DatacentermyDC0 | Get-Foldernetwork-NoRecursion)
And, to create a folder right in the root (not in a datacenter), you can do:
## folder at the root of the vC
New-FoldertestFolder-Location (Get-Folder-NoRecursion)
That get at what you are after?