You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2020. It is now read-only.
Currently, filtering each scope consists of Get-VM -Name YOURINPUTHERE & similar for other scopes.
That's ok, but leaves room for improvement. For example, Get-VM -Tag YOURTAGHERE would be a pretty sweet option.
Is that enough? Should we allow people to fully craft their own queries? That would allow Get-VM | Where Name -notlike 'abc'. Get-VM -Datastore YOURDATASTOREHERE is also a thing. Get-VM may have another useful parameter, or more useful parameters in the future. Who knows how many useful filtering parameters exist on the rest of the scopes right now.
Will people know to replicate that, or realize that parent scopes may not apply? We could display, on-screen, the results of your query (like after you set it in New-VesterConfig), but some people have thousands of VMs, so I've held off on doing that.
I personally think inventory tags are sweet, and enough to solve this problem. But I'm interested in your feedback before I get started!
The text was updated successfully, but these errors were encountered:
I think it is a good idea to allow for custom filtering.
I personally like the Get-VM | Where-Object {"server1","server2" -notcontains $_.Name} (Because not many people use tags where I work. I can't trust our admins to tag things appropriately)
Currently, filtering each scope consists of
Get-VM -Name YOURINPUTHERE
& similar for other scopes.That's ok, but leaves room for improvement. For example,
Get-VM -Tag YOURTAGHERE
would be a pretty sweet option.Is that enough? Should we allow people to fully craft their own queries? That would allow
Get-VM | Where Name -notlike 'abc'
.Get-VM -Datastore YOURDATASTOREHERE
is also a thing. Get-VM may have another useful parameter, or more useful parameters in the future. Who knows how many useful filtering parameters exist on the rest of the scopes right now.However, currently, we're actually doing:
Will people know to replicate that, or realize that parent scopes may not apply? We could display, on-screen, the results of your query (like after you set it in
New-VesterConfig
), but some people have thousands of VMs, so I've held off on doing that.I personally think inventory tags are sweet, and enough to solve this problem. But I'm interested in your feedback before I get started!
The text was updated successfully, but these errors were encountered: