I was able to download the cmdlets from Clint's blog, but wasn't sure exactly how to import them. I think they have to be placed in a specific directory before you can run the import-module command.
Also I was able to get the script that you and cfor helped with, here is what I used. The only thing I am running into now is getting the network to provision as excepted. As I'm sure you guys have noticed vApps provision to a vApp network named the same as the source network in the vApp Template. I have poked around a little and will keep looking but ultimately want to be able to provision an org network into the created vApp. Thanks a lot to both of you for your help so far!
Connect-CIServer -Server URL.com -User username -Password password -Org OrgName
$numVapp=50
$vappTemplate = Get-CIVappTemplate -Name "TemplateName"
$vAppBaseName="NewvAppName-"
for ($i=1; $i -le $numVapp; $i++)
{New-CIVApp -Name ($vAppBaseName + $i) -VAppTemplate $vappTemplate }