Skip to content

Instantly share code, notes, and snippets.

@jonathanmedd
Created August 17, 2016 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanmedd/932f97943b0621fc012b6e2a345f7407 to your computer and use it in GitHub Desktop.
Save jonathanmedd/932f97943b0621fc012b6e2a345f7407 to your computer and use it in GitHub Desktop.
Export_Multiple_Workflows
Get-vROWorkflow -Category PowervROTest | ForEach-Object {
$Filename = $_.Name + ".workflow"
$Filepath = "C:\vRO\Workflows\Export\$Filename"
Export-vROWorkflow -Id $_.ID -File $Filepath
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment