Johannes
Johannes

Reputation: 6707

How to generate vcvarsall.bat

My visual Studio 2015 installed without vcvarsall.bat.

HDDContent

This is not about how to find this file and I am also not a python developer.

MSDN states at the bottom of this page:

The vcvarsall.bat file can vary from computer to computer. Do not replace a missing or damaged vcvarsall.bat file by using a file from another computer. Rerun Visual Studio Setup to replace the missing file.

I am running the installation through our local IT department so I only get a fixed version of the setup. It looks like this setup does not install the batch file.

I wonder what other means of generating this "file" (actually it is several files and a folder structure) there are - how does the visual studio setup generate this file and is that generation possible without running the whole setup?

Upvotes: 0

Views: 671

Answers (1)

apr
apr

Reputation: 552

You have some option to "install" vcvarsall.bat.

  • The obvious to rerun VS setup and add c++ features (maybe your IT dep is kind enough and...)
  • Install visual c++ build tools
  • Install windows sdk (select c++ related components)

Upvotes: 1

Related Questions