The old-school method for running another script from batch is to echo the script into another location, and then run it.
This method can be represented like this:
@echo off
rem VBS below
echo your vbs > TempVBS.vbs
echo other vbs>>TempVBS.vbs
rem End of VBS
cscript //nolog...