Render sequentially multiple cameras

Hi,
I have a Maya scene and would like to render frames 1-200 with camera1, 201-400 with camera2, 401-1000 with camera3, aso.
Can this be done with VRay in one render operation or should I initiate multiple renders manually ?
Thanks !

U can create render layer for each camera and then render all layers one after another.

Thanks. Should I simply set a different camera in the Renderable Camera setting and Maya will automatically take it ?

I think that should work… not sure. There might be bug with it tho. Remember to create layer override.

Use command line rendering, just open notepad and some code:

“C:\Program Files\Autodesk\Maya2015\bin\Render.exe” -r vray -cam camera1 -s 1 -e 200 “D:/maya/projects/project.mb”
“C:\Program Files\Autodesk\Maya2015\bin\Render.exe” -r vray -cam camera2 -s 201 -e 400 “D:/maya/projects/project.mb”

More commands and tutorial that you SHOULD read
http://www.jawa9000.com/Technical/batch/batch-rendering.htm

Then save as render.bat on your desktop - done!