Created
July 25, 2016 12:25
-
-
Save chelnak/ab5d56dec18de52455d3cf7ff579df84 to your computer and use it in GitHub Desktop.
Get request template for all Catalog items that match a certain string with PowervRA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-vRAConsumerCatalogItem | ? {$_.Name -like "*LIKE*"} | Select Id, Name | % {Get-vRAConsumerCatalogItemRequestTemplate -Id $_.Id | Out-File -FilePath ".\Data\$($_.Name).json"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment