Skip to content

Instantly share code, notes, and snippets.

@chelnak
Created July 25, 2016 12:25
Show Gist options
  • Select an option

  • Save chelnak/ab5d56dec18de52455d3cf7ff579df84 to your computer and use it in GitHub Desktop.

Select an option

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
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