Skip to content

Commit f46499e

Browse files
committed
Update batch file content
1 parent d2bbbb5 commit f46499e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/windows/deploying-visual-cpp-application-by-using-the-vcpp-redistributable-package.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ You must have these components to complete this walkthrough:
2626

2727
```cmd
2828
@echo off
29-
::vc_redist.x86.exe :: remove leading :: to install Redistributable for x86
30-
::vc_redist.x64.exe :: remove leading :: to install Redistributable for x64
31-
::vc_redist.arm64.exe :: remove leading :: to install Redistributable for ARM64
32-
::vcredist_arm.exe :: remove leading :: to install VS 2015 Redistributable for ARM
29+
REM Choose one of the following Redistributable files to install
30+
::vc_redist.x86.exe REM remove leading :: to install Redistributable for x86
31+
::vc_redist.x64.exe REM remove leading :: to install Redistributable for x64
32+
::vc_redist.arm64.exe REM remove leading :: to install Redistributable for ARM64
3333
mkdir "C:\Program Files\MyMFCApp"
3434
copy MyMFCApp.exe "C:\Program Files\MyMFCApp"
3535
```

0 commit comments

Comments
 (0)