I was running into a similar issue with a Node.js module refusing to install unless I added the location of vcbuild.exe
to the system path.
@neslekkiM's answer was a starting point for me, but I didn't want to have to install the entire Visual Studio or SDK - I just wanted the build tools. I ended up finding out you can download the build tools by themselves:
https://www.microsoft.com/en-us/download/details.aspx?id=48159
Once installed, your vcbuild.exe
should be located somewhere in the subfolders of C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin
(mine was in amd64).
I know this question is a few years old, but hopefully this helps someone later down the road.