News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Batch file to get VC binaries from installed build tools.

Started by hutch--, August 02, 2020, 02:01:14 PM

Previous topic - Next topic

hutch--

I have not bothered to idiot proof it. Save it as a name of your choice then run the batch file with a valid target directory. NOTE that you must have VC 2019 build tools installed. This is an updated version, the first one did not get the subdirectory.

@echo off

mkdir %1
chdir %1
mkdir 1033
chdir \

c:

chdir "Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.26.28801\bin\Hostx86\x64"

copy *.* %1
chdir 1033
copy *.* %1\1033

chdir \

pause