Trouble with -cubin Generating a .cubin file

I am having trouble with the -cubin option. I cannot seem to get the file generated. I have the .bat file in my project directory. Here is my .bat file:

nvcc -ccbin "C:\Program Files\Microsoft Visual Studio 8\VC\bin" -keep -cubin -DWIN32 -D_CONSOLE -D_MBCS -Xcompiler /EHsc,/W3,/nologo,/Wp64,/O2,/Zi,/MT -I"C:\CUDA\include" -I./ -I"C:\Program Files\NVIDIA Corporation\NVIDIA CUDA SDK\common\inc" %1

I run the .bat file using my project’s .cu file called template.cu:

run_nvcc.bat template.cu

I see the compilation results and a bunch of files are created in my project directory, but no .cubin file.

I appreciate any help. Thanks.