I am trying to get an installer working for a 32 bit app on 64 bit machines. I originally included the 64bit version of the vcredist package and scripted it so it would use these on a 64 bit machine. So is it kosher to install the 32bit ones on the 64bit machine?
What vcredist package do I install on a 64 bit machine with a 32 bit app?
255 Views Asked by Dave O'Connor At
1
There are 1 best solutions below
Related Questions in X86
- Why do we need AX instead of MOV DS, data directly with a segment?
- Drawing circles of increasing radius
- Assembly print on screen using pop ecx
- How to add values from vector to each other
- Intel x64 instructions CMPSB/CMPSW/CMPSD/CMPSQ
- Compact implementation of logical AND in x86 assembly
- Can feenableexcept hurt a program performance?
- How do I display the result and remainder in ax and dx in Assembly (tasm)
- ASM : Trouble using int21h on real machine
- jmp instruction *%eax
- What steps are needed to load a second stage bootloader by name on a FAT32 file system in x86 Assembly?
- Assembly code to print a new line string
- Write System Call Argument Registers
- How to jump to an address saved in a register in intel assembly?
- Find middle value of a list
Related Questions in 64-BIT
- (x64 Nasm) Writeline function on Linux
- How to return a 16 bit value as 64 bit?
- iOS: app doesn't pass the upload for the architecture
- Can't open mkl_intel_s_dll.lib in 64bit Visual Studio environment
- Intel x64 instructions CMPSB/CMPSW/CMPSD/CMPSQ
- Zlib decompression method warning using ios 64bit Architecture
- Assembly x64: Using MULPD instruction with integer
- VirtualBox: VERR_VMX_MSR_VMXON_DISABLED
- 64bit bitmask and javascript
- Delphi xe2 Error compiling ASM code with x64 compiler. Unsupported language feature: 'ASM'
- Cordova 3.8.0 Build Causes Errors in Iphone Apps locking up at Splash Screen
- DirectX libs in x64 program
- Is there any reason to still use int as opposed to long on a 64 bit machine?
- In 64bit R, what should my memory.limit() be set to?
- NASM issue on OSX 64-bit
Related Questions in 32BIT-64BIT
- problemsn with xcode and 64 bit app compatability
- Win7, dependency error in 64bit visual studio
- Android NDK - multlib support using gradle
- Is there any reason to still use int as opposed to long on a 64 bit machine?
- Connecting to Oracle ODBC via Pyodbc (32-bit vs. 64-bit)
- iOS app displays messy when adding arm64 in Valid Architectures
- Compile-Build KDSoap libraries
- Link Error 2001: Unresolved external symbol while porting 32 to 64bit
- Window Explorer Error in 64 bit but not 32 bit with BHO
- Do I need to install OpenCV if needed files were given?
- What are the negative effects for running a 64bit .NET program from Program Files (x86)?
- Python cant see files or folders in C:\Windows\System32\GroupPolicy
- an error "ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386"
- What vcredist package do I install on a 64 bit machine with a 32 bit app?
- In computers 32-bit or 64-bit processors are used, why not 40-bit or other numbers?
Related Questions in VCREDIST
- What vcredist package do I install on a 64 bit machine with a 32 bit app?
- How to install Visual C++ Redistributable Package 2015 with Inno Setup?
- Can Visual C++ 2017 Redistributable package support the applications that use VC2015?
- How to detect if Visual C++ 2017 Redistributable is installed
- Find merge modules for vcredist_x86.exe
- How can I fix Microsoft Visual C++ 2017 X64 Minimum Runtime error during installing Redistributable packages (VC_redist.x64.exe, VC_redist.x86.exe)?
- How to run on Windows with only local CRT DLLs?
- install vcredist_x86.exe from my installshield seteup
- InstallShield: Unwanted reboot after installed prerequisite
- Why are there multiple copies of the same C++ .dll's on my computer?
- How to deploy Qt app compiled using MSCV so that it won't neet vc_redist installed?
- Inno Setup and VC Redistributable and handling exit code 3010 gracefully
- VC redistributable fails to install when executed within an MSI
- Does nsExec::ExecToStack is waiting the process to finish?(NSIS)
- How can I obtain few of vc runtime dll's to include in my installer?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, you should install the 32-bit redistributables. The 64-bit redistributables won't help a 32-bit application, and the installer for the 64-bit redistributables won't automatically install 32-bit redistributables.