system32

C# Missing MSVCR100.dll

≡放荡痞女 提交于 2019-11-29 05:32:17
I'm developing an app that execute another app and I received this error: the program can't start because MSVCR100.dll is missing from your computer with my C# app, can I fix this problem copying this .dll into windows/system32 folder? Or exists another method to do this? This links below point to the proper downloads for the MSVCRT100 installer. This is likely what you want your customers to run before installing your app. This will properly install the MSVCRT DLLs in the proper directory such that all applications can use it. Microsoft Visual C++ 2010 Redistributable Package (x86) (probably

Why do 64-bit DLLs go to System32 and 32-bit DLLs to SysWoW64 on 64-bit Windows?

走远了吗. 提交于 2019-11-26 01:37:17
问题 I would like to know when do we need to place a file under C:\\Windows\\System32 or C:\\Windows\\SysWOW64, on a 64-bits windows system. I had two DLL\'s, one for 32-bit, one for 64-bit. Logically, I thought I\'d place the 32-bit DLL under C:\\Windows\\System32, and the 64-bit DLL under C:\\Windows\\SysWOW64. To my surprise, it\'s the other way around ! The 32 -bit one goes into C:\\Windows\\SysWOW 64 , and the 64 -bit DLL goes into C:\\Windows\\System 32 . Very confusing stuff. What\'s the