Skip to content

Instantly share code, notes, and snippets.

@william-wheeler
Created November 20, 2015 18:31
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 william-wheeler/5c0b985ff981210ee92f to your computer and use it in GitHub Desktop.
Save william-wheeler/5c0b985ff981210ee92f to your computer and use it in GitHub Desktop.
param([string]$VMNameStr)
#return list of VMNames as array split on comma, trimming white spaces
return [array]$VMNameStr = $VMNameStr -split (",") | %{$_.trim()}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment