Results 1 to 8 of 8
  1. #1
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent

    The PROPER way to fix msvcr100.dll, msvcr100d.dll or d3dx9_*.dll errors.

    Well, I see that a lot of people here get the problem of missing msvcr100.dll, msvcr100d.dll, msvcp100.dll or d3dx9_*.dll errors. There are many ways to fix them but one of the most common is to Google the file name and just download the file from the internet from DLL sites. This can be dangerous as you might be downloading the wrong one and you could make your system unstable.

    What does msvcr100d and msvcp100 mean?
    MS = Microsoft
    V = Visual
    C = C or CP = C++
    R = Runtime
    100 = Version
    D = Debug

    How do I do it properly and safely?
    Use Microsoft's official installers/redistributables to fix these problems.

    Note about missing DLLs ending with a 'D'
    This means whoever coded the application/hack didn't build it in Release mode meaning you'll have problems running it if you aren't a programmer. The only way (which I said not to do before) is to find the DLL manually on the internet and place it into the C:\Windows\system32 folder. I am not responsible for anything that happens when you do this though. You can find some of them here.

    Where can I find them?
    To fix any msvcr100.dll or msvcp100.dll errors, you need to install the Microsoft Visual C++ 2010 SP1 Redistributable. Download the one that matches your computer's architecture (32-bit or 64-bit). Note that if you are running 64-bit, INSTALL BOTH.
    Download: Microsoft Visual C++ 2010 SP1 Redistributable Package (x86) - Microsoft Download Center - Download Details (32-bit)
    Download: Microsoft Visual C++ 2010 SP1 Redistributable Package (x64) - Microsoft Download Center - Download Details (64-bit)

    If you are getting mscvr110.dll or msvcp110.dll errors, install the Visual Studio C++ Redistributable 2012. You can find it here:
    https://www.microsof*****m/en-us/downl....aspx?id=30679
    Make sure to DELETE any msvcr100.dll or msvcr100d.dll files from your system folder.
    If you are asked to repair the installation, do it.

    To fix any d3dx9_*.dll errors, use the DirectX Web Installer and make sure to install optional components.
    Download: DirectX End-User Runtime - Microsoft Download Center - Download Details


    How do I know if I'm running a 32-bit or 64-bit OS?

    Please follow the instructions for your OS. (These were taken from Microsoft Support)

    Windows Vista/7
    1. Click Start [img]https://support.microsof*****m/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg[/img], type system in the Start Search box, and then click system in the Programs list.
    2. When System Summary is selected in the navigation pane, the operating system is displayed as follows:
    • For a 64-bit version operating system: 64-bit Operating System appears for the System type under System.
    • For a 32-bit version operating system: 32-bit Operating System appears for the System type under System.

    Windows XP
    1. Click Start, and then click Run.
    2. Type sysdm.cpl, and then click OK.
    3. Click the General tab. The operating system is displayed as follows:
    • For a 64-bit version operating system: Windows XP Professional x64 Edition Version < Year> appears under System.
    • For a 32-bit version operating system: Windows XP Professional Version <Year> appears under System.
    Note <Year> is a placeholder for a year.

    I'm a coder, how can I prevent this from happening to people when they use my hacks?
    If you are a coder and use Visual Studio 2010 or Visual C++ 2010 Express, you should tell users to install the redistributable before using the hack. You can also 'statically link' the DLLs required so the user doesn't need to install anything at all! It basically embeds the data required inside your hack.

    EDIT - If you are using Visual Studio 2012, make sure to change the Platform Toolkit via the Project Properties to Visual Studio 2012 (v100) otherwise it will NOT work for users on Windows XP! Click here for an image.

    How to statically link the DLLs:
    1. In Visual Studio, right-click on your project and click Properties.
    2. Change the Configuration to Release (at the top).
    3. Click on Configuration Properties > C/C++ > Code Generation
    4. Change the Runtime Library option to Multi-threaded (/MT)
    5. Click OK and rebuild your project (right-click on your project and click Rebuild).
    The new copy of your hack should be in your project's Release folder.

    Why would I want to change the configuration from Debug to Release?
    Firstly, most computers do not have the Debug version of the DLL (msvcr100d.dll). It's recommended that you release all your hacks in Release mode (make sense right?). It will also remove some safety stuff that's only required during testing and will generally improve the speed/performance of your hack because the compiler often optimises the code more. The same thing even applies to applications coded in .NET, the only difference is you can't statically link anything.

    The following are the respective numbers of each Visual Studio software version:
    • 90 - Visual Studio 2008.
    • 100 - Visual Studio 2010.
    • 110 - Visual Studio 2012.
    • 120 - Visual Studio 2013.
    • 140 - Visual Studio 2015.

    As the User:

    Download the one your computer doesn't have installed yet and install it.

    As a Developer:
    Compile with /MT

    Credits: [MPGH]master131 , [MPGH]Yamiez
    Last edited by Heroes; 12-23-2016 at 11:21 AM.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  2. The Following 9 Users Say Thank You to RuShi For This Useful Post:

    Acap5hadi (01-14-2017),ahmad ilman (07-27-2017),cyberakuma1 (01-26-2018),darkness32 (12-25-2016),Elza Daiane Santos (06-27-2023),shawn996 (09-24-2017),thadeo000 (12-22-2016),yasuko (12-22-2016),{*furious*} (09-22-2017)

  3. #2
    HaXiNgRuLeZ's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    443
    Reputation
    40
    Thanks
    3,007
    My Mood
    Cynical
    Wooo... Nice @Luffy
    Join MPGH : Jun 2016
    ~30/100 Comeback~









  4. #3
    totokill's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    how to fix gameguard is not running,,,,,,and how to fix cheat has been detected but error!!

  5. #4
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Quote Originally Posted by totokill View Post
    how to fix gameguard is not running,,,,,,and how to fix cheat has been detected but error!!
    Nothing related to this thread.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  6. #5
    teack's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    do u have msvcr110d.dll ??

  7. #6
    Cheez294's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    9
    didnt work for me

  8. #7
    mistyboy50's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Fine
    I cant install kb2919355 . ik tht kb need if want to install

  9. #8
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Quote Originally Posted by mistyboy50 View Post
    I cant install kb2919355 . ik tht kb need if want to install
    You can get it here : https://www.microsof*****m/en-sg/downl....aspx?id=42327


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

Similar Threads

  1. The PROPER way to fix msvcr100.dll, msvcr100d.dll or d3dx9_*.dll errors.
    By Paralyze in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 27
    Last Post: 05-05-2016, 07:05 AM
  2. Replies: 47
    Last Post: 09-21-2013, 10:33 PM
  3. The PROPER way to "/Request ban"
    By Disturbed in forum Combat Arms Discussions
    Replies: 34
    Last Post: 02-17-2011, 10:02 PM
  4. The Easiest way to Fix Almost All Simple Viruses!
    By bomb0324 in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 07-31-2010, 07:06 AM
  5. [Release] The REAL way to fix Strifes Chams.
    By PyroCorona in forum Combat Arms Hacks & Cheats
    Replies: 62
    Last Post: 09-07-2008, 04:39 PM