How To Install Directx 11 On Windows 10 From Microsoft

If there are files missing, then I suggest running dxwebsetup from MS Downloads to install the missing files. It will update DX 9, 10 and 11 on XP, Vista and 7: Download Download and Install DirectX9 End User Runtime Install DirectX, DX9 from Official Microsoft Download Center. Updating DirectX. To get the latest version of DirectX for your version of Windows, use Windows Update. If you have Windows 10, then you already have the latest version of DirectX installed. Not all versions of Windows can run the latest versions of DirectX. Installing the latest version of DirectX.

-->

This article is intended to address some of the common questions about the DirectX runtime, and using DirectSetup to install DirectX.

Important

The legacy DirectX SDK is at end-of-life, but it's still available in order to support old games, tutorials, and projects. New projects should not use it. Using the legacy DirectX SDK requires the use of the deprecated DirectSetup for components such as D3DX9, D3DX10, D3DX11, XAudio 2.7, XInput 1.3, and XACT. For more details on the current state of the DirectX SDK, see Where is the DirectX SDK?, and the blog post Not So Direct Setup.

DirectX Runtime

The DirectX runtime consists of core components and optional components.

The core components, such as Direct3D and DirectInput, are considered part of the operating system. The core components for DirectX 9.0c have not changed since the DirectX SDK Summer 2004 Update, and they match what was released with Microsoft Windows XP SP2, Windows XP Pro x64 Edition, and Windows Server 2003 SP1. Windows Vista includes DirectX 10, which supports the Windows Display Driver Model (WDDM) and Direct3D 10.x. Windows 7 and Windows Vista (see KB971644) support DirectX 11, which supports Direct3D 11, Direct2D, DirectWrite, the WARP10 software rendering device, and the 10level9 feature levels. See Graphics APIs in Windows for more details.

The optional components are released in updates of DirectX SDK, and they include D3DX, XACT, XAudio2, XINPUT, Managed DirectX, and other such components. Many of the optional components are regularly updated to integrate customer feedback and expose new features.

DirectX Version Number

The DirectX version number, such as 9.0c, refers only to the version of the core components, such as Direct3D, DirectInput, or DirectSound. This number does not cover the versions of the various optional components that are released in the DirectX SDK, such as D3DX, XACT, XINPUT, and so on.

Generally speaking, the DirectX version number is not meaningful except as a quick reference to the core run-time bits. This number should not be used to check if the correct DirectX runtime is already installed, because it doesn't take into account the optional DirectX components.

DirectX Libraries

In the past, the optional components of the DirectX SDK, including D3DX, were released as static libraries. However, these are now released as dynamic-like libraries (DLL) because of the increased demand for better security practices. DLLs allow servicing of previously released code. If these components were deployed as static libraries, there would be no way for Microsoft to address security issues found after release.

As features are added or changed to the optional components, the names of the corresponding DLLs are also changed to ensure that no regressions are caused to existing games that are using released components. The DLLs for each component live side by side, and game developers can choose exactly which DLL version that the game uses by linking to the corresponding import library.

While ensuring that DLLs are installed on a system isn't as easy as simply linking to static libraries, some changes have been made to the DirectX SDK to address the pain of the DLL model:

  • The DirectX redistributable can be configured to contain only those components that your application requires to minimize distribution and media sizes.
  • The redistributable folder, Program FilesDirectX SDKRedist, now contains a cabinet (.cab) file for every possible optional component, so you don't have to dig up an older SDK to find them.
  • Installing the SDK itself installs every possible optional component.
  • A DirectX redistributable that contains all the optional components is available as both a Web-based installer and as a downloadable package; see the DirectX Developer Center (DirectX) for more information.

Installation of DirectX by the Game's Installer

Note

See Direct3D 11 Deployment for Game Developers.

The following are the best practices for adding installation of DirectX to a game's installer:

TermDescription
Install the redistributable components every time.
A game's installation process should install the DirectX redistributable components during every single installation without allowing users to opt-out of it. If you allow opting-out, then some users will guess that they don't need it, and if they actually do, the game will not run.
Let the DirectX installer check for optional components.
Do not assume that the latest optional components are already installed on a system, because Windows Update and Service Packs do not provide any of DirectX's optional components. You must install the DirectX runtime either by running dxsetup.exe directly or calling DirectSetup.
Set up silently.
Launch setup in silent mode so that users do not accidentally skip updating the DirectX runtime. You can do this by launching dxsetup.exe with the following command:
or by calling DirectSetup and not showing any UI.
Combine EULA acceptances.
If you prompt the user to accept a EULA, then combine that with prompting for acceptance of the DirectX EULA when installing in silent mode so that prompting for acceptance of EULAs happens just once. Prompting should happen before you install anything so that if user doesn't accept, you don't end up with a failed and partial installation.
Just run dxsetup or call DirectSetup.
Because the DirectX version number doesn't refer to anything except the core DirectX components, do not check an installed version before running dxsetup.exe or calling DirectSetup. Also, do not check for a file's existence to test if an optional component is already installed, since this usually will not correctly determine when a component exists but needs updating. However, the DirectX setup package will quickly determine this, and perform the right action.

Small Installation Packages

You can create smaller installation packages for DirectX by stripping the contents of the DirectX redistributable folder down to the minimal set of files required to make the installer work, and retaining any additional components that your game uses.

Depending on your minimum specifications, you might not even need to include the core DirectX 9.0c cabinet files in the redistributable folder of your installation media. A large majority of Windows XP installations have Service Pack 2, which includes the core DirectX 9.0c components, so the DirectX setup operation will be very fast, and will not require a reboot. The smallest package that can be created is about 3 MB, and it can be compressed to about half that size. A package like this contains one version of the D3DX DLL, and it requires that DirectX 9.0c be already present.

The minimal set of files that are required to build a redistributable package are the following files, located in the DirectX SDK Redist folder (Program FilesDirectX SDKRedist):

  • dxsetup.exe
  • dsetup32.dll
  • dsetup.dll
  • dxupdate.cab

Add to these the cabinet files for the components that you want to install. If you require the users of your application to already have DirectX 9.0c, then you do not need to include DirectX.cab or dxnt.cab, which make up most of the space requirement. DirectX.cab is only needed for Windows 98 and Windows ME; dxnt.cab is only needed for Windows 2000, Windows XP, and Windows XP SP1; and dxdllreg_x86.cab is only required for Windows 2000, Windows XP RTM, Windows XP SP1, and Windows Server 2003 RTM. Also, if you do not make use of DirectShow, or you assume that it is already installed, you can omit BDA.cab, BDANT.cab, and BDAXP.cab.

Note

You can assume that users of your application already have DirectX 9.0c if it was installed by a previous version of your application, you force users to manually update via the Web Installer, or you assume that they have Windows XP SP2 or later.

Continuing with this example, if you are using only the 32-bit version of D3DX for April 2006, you can add Apr2006_d3dx9_30_x86.cab. If you are using the 32-bit August 2006 32-bit version of XINPUT, you add Aug2006_xinput_x86.cab.

If you have a native 64-bit application, you'll need to add the _x64 versions. However, if you have a 32-bit application running on a 64-bit OS, the 32-bit versions of the DLLs will work.

You can then distribute this package of files and launch DirectSetup in silent mode or run dxsetup.exe in the command shell in silent mode. Remember not to guard this package by any version checking of files, and make sure that your users cannot opt out of running the DirectX setup. Either of these events creates a fallible installation process.

Internal Deployment of the Debug DirectX Runtime

Windows

The debug runtimes of the DirectX components are installed when the DirectX SDK is installed, but installing the SDK on every test computer can be painful. You need to design your setup process to copy the debug runtime DLLs from Program FilesMicrosoft DirectX SDKDeveloper Runtimearchitecture to Windowssystem32 or to the game's folder.

However, we strongly recommend that you do not simply copy the released run-time DLLs because it is easy to forget to remove them for the final product. Instead, put the DirectX setup files in a shared folder and run the setup silently from the shared folder.

Desktop Bridge applications

Desktop Bridge applications that use D3DX9, D3DX10, D3DX11, XAudio 2.7, XInput 1.3, or XACT must download either the Microsoft.DirectX.x86 or the Microsoft.DirectX.x64 framework in order to deploy these legacy DirectX SDK side-by-side components. Alternatively, you can remove all such dependencies—(see Developer guide for redistributable version of XAudio 2.9, and the blog posts Living without D3DX and XINPUT and Windows 8).

Summary :

How Install Directx 11 On Windows 10

Are you bothered by how to reinstall DirectX? Due to some errors with DirectX, you have to reinstall this component. However, a great many users have trouble in reinstalling it. To help you resolve this trouble, MiniTool will tell you how to reinstall DirectX and fix its errors.

How To Install Directx 11 On Windows 10 From Microsoft Download

Quick Navigation :

As an important component of Windows 10, Microsoft DirectX is responsible for managing the tasks related to video, game programming, multimedia, graphic programs and etc. Once the component gets corrupted or damaged, you will encounter various error messages like D3DCOMPILER_47.dll is missing, DSOUND.dll was mot found and etc.

At this time, you will find these error messages have a common feature. That is you are always required to reinstall DirectX. So, you have to look for the methods on Google to reinstall DirectX Windows 10. In the context, we will discuss how to reinstall DirectX and the corresponding fixes of its errors.

Check Your DirectX Version

Before you reinstall DirectX Windows 10, you should check what DirectX version is installed on your computer. Here is a quick guide for you.

Step 1. Type dxdiag in the search box and click this app from the list.

Step 2. After a while, you will see a pop-up window that shows the DirectX version you installed in the System tab.

Then you can reinstall DirectX Windows 10 based on your needs. Now, let’s see how to reinstall DirectX Windows 10.

You may see an error “explorer.exe system call failed” when launching File Explorer. This post mainly focuses on how to fix the system call failed error.

How to Reinstall DirectX Windows 10

There are some applications requiring an older version of DirectX to run properly, so you have touninstall your currently installed DirectX and reinstall the previous version. Here is how to do that:

How to install directx 11 on windows 10 from microsoft office

Step 1. Download the previous DirectX version from here.

Step 2. After that, you can install it and restart your computer to check if the DirectX errors are resolved or not.

Error 0x80070020 often occurs while you try to install Windows updates. This post mainly focuses on the solutions to fix Windows update error 0x80070020.

How to Fix the Errors with DirectX

As mentioned above, you may encounter some error with DirectX like “D3DCOMPILER_47.dll is missing”, and “DSOUND.dll is missing” and so on. For these issues, you can try the following 2 common methods to fix.

Fix 1. Update Your Device Driver

Outdated or corrupted device drivers can cause DirectX errors. Updating your device driver can help you resolve the errors without reinstalling DirectX. You can follow the steps below to update the device driver.

Step 1. Type device in the search box and select Device Manager from the contextual menu.

Step 2. Navigate to the Display adapters and expand it. Then right-click the device diver and click Properties.

Step 3. In the new window, go to the Driver tab and click Update Driver button.

Step 4. Then click Search automatically for updated driver software from the 2 options. After that, Windows will search for the latest driver software for you.

Fix 2. Use System Restore Point

System Restore point is a built-in tool that can help you recover your system to an earlier status. If there are any system restore points before you encounter the errors with DirectX, you can use the System Restore Point feature.

Step 1. Press Win + R keys to open the Run box, and then type the rstruiexe command in the box and hit Enter.

Step 2. Inside the System Restore window, click the Next button to continue.

Step 3. In the new window, check the Show more restore points, then you will find more restore points (including the automatic restore points and the restore point you created by yourself). Select the Restore point that you prefer to and click Next button.

How To Install Directx 11 On Windows 10 From Microsoft Word

Step 4. Then confirm your restore point by clicking the Finish button. After that, your computer should be restored to an earlier state.

How To Install Directx 11 On Windows 10 From Microsoft Product

Right now, you probably have known how to reinstall DirectX in Windows 10. If you encounter the issues with DirectX, you can try the above methods to fix them.