In Richter's "CLR via CSharp" book there is a following table explaining how application built in different ways will run on various versions on Windows. It says that application built with x86 platform switch will run on 64-bit OS as a WoW64 application which is perfectly fine, but it also tells that with anycpu32bitpreferred switch it will run as a 32-bit application. So the question is how 32-bit application can run on 64-bit OS other than as a WoW64?
How 32-bit application can run on 64-bit OS?
465 Views Asked by Grigoryants Artem At
1
There are 1 best solutions below
Related Questions in WINDOWS
- how to play a sounds in c# forms?
- Echo behaviour of Microsoft Windows Telnet Client
- Getting error while running spark-shell on my system; pyspark is running fine
- DirectX 9 With No SDK Installed - How To Translate a D3DMATRIX?
- Gradle 8.7 cannot find installed JDK 22 in IntelliJ
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Cannot load modules/mod_dav_svn.so into server
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
- 32-bit applications do not display some files in Windows 10
- 'bun' is not recognized as an internal or external command
- mkssecreenshotmgr taking a screenshot
- Next js installation in windows 7 os
- Can't resize a partition using Mini Tool?
- Is there any way to set a printer as default according with Active Directory Policy Security Group and PC hostname?
- Electron Printing not working on Windows (Works on Mac)
Related Questions in 32BIT-64BIT
- 32-bit applications do not display some files in Windows 10
- How can I get a 32-bit output with Python on a 64-bit system?
- Create 32 bits conda python environnement on a 64 bits system
- i386 32 bit bainary support seems broken - how do I get 32 bit bainaries to execute
- Cross compiling from Ubuntu 22.04 to ARM architecture not working
- Running 32-bit Assembly Source files on a 64-bit Ubuntu Linux installation
- Is it possible to convert 32bit machine code into 64bit?
- How to use gadget in a ROP attack
- use system2 from R 4.2 to execute cammand in 32-bit R
- QuickBooks SDK: How to use the QBFC library (32-bits) within a 64-bit application
- Python: 64/32 bit mismatch - how to get rid of it?
- Python - 32-bit pyodbc vs 64-bit Access/ODBC driver compatibility challenges
- Pandas Series with dtype=int defaulting to int32 instead of int64 on 64-bit Python environment
- Stack alignment when using SIMD instructions
- How can I find in Visual Studio 2022 the setting whether my Blazor Server Side app shall run in 32-bit or 64-bit process?
Related Questions in WOW64
- IDA disassembler view of loaded DLL in process address space
- Wow64 subsystem and its implementation on x86_64
- Why is registering x86 build for startup works but x64 does not
- Are ntdll's exported functions the same whatever the version?
- Windows DLL Loading : Load A 64 Bit Dll Into a 32 bit Process, Is It Possible?
- NtQueryObject returns wrong insufficient required size via WOW64, why?
- How can a WOW64 program overwrite its command-line arguments, as seen by WMI?
- How to call windows library functions after manually switching from WOW64 to 64-bit mode through Heaven's Gate?
- What exactly does the 32-bit win32k.sys/win32kfull.sys do on a 64-bit Windows operating system?
- Why is the Windows ProductName different for 32 bit applications
- Executable "C:\Windows\System32\Fodhelper.exe" not found
- Executing CMD commands using C++
- 32-bit process failed to get another 32-bit process's PEB on Windows10 x64 system
- 64-Bit Ntdll Has x86 Instruction Set?
- C++: IsWow64Process2: What valid WOW64 process architecture values can be returned via the pProcessMachine parameter?
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 # Hahtags
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?

This is a typo. It's mentioned in the errata for the book: