Using PoshStack to spin up a server in OpenStack -- One Line
Creating a virtual machine, AKA "Spinning up a server", in OpenStack is a one-liner using PoshStack, the in-development PowerShell client for OpenStack. To wit:
New-CloudServer -Account demo -ServerName "foo" -FlavorID $flavors[0].id -ImageID $images[0].id
New-CloudServer -Account demo -ServerName "foo" -FlavorID $flavors[0].id -ImageID $images[0].id