Windows Authentication under Web Server (IIS) keeps failing during installation

Kwabena 0 Reputation points
2024-09-10T14:59:54.3666667+00:00

While installing Web Server (IIS) through roles and features in windows server 2019, the "windows authentication" under security seems to be failing when installing. Please see imagesAnnotation 2024-09-10 105601

Annotation 2024-09-10 105326

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,728 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Yanhong Liu 8,765 Reputation points Microsoft Vendor
    2024-09-11T06:32:01.3066667+00:00

    Hello,

    The error code 0x80073701 indicates that a referenced assembly could not be found, which often points to missing or corrupted system files. Here are some steps you can take to resolve this issue:

    1.Run the System File Checker (SFC) Tool:

    Open Command Prompt as an administrator.

    Run the following command:

    sfc /scannow

    This will scan and repair any corrupted system files.

    2.Run DISM Tool:

    Type cmd in the Windows Start Search box.

    Right-click on the Command Prompt and go with the option Run as administrator.

    Now, enter the below command,

    dism /online /cleanup-image /startcomponentcleanup

    Nextly, restart your computer to take effect and check if the issue is resolved and whether you can install IIS features on the windows server or not.

    3.Check for Windows Updates:

    Go to Settings > Update & Security > Windows Update and check for updates.

    Install any available updates and restart your server.

    If the issue started after a recent update, consider uninstalling the update.

    Go to Control Panel > Programs > Programs and Features > View installed updates and uninstall the problematic update.

    4.Check Logs and Remove Patches:

    You will have to check the CBS.log and remove the patches in this method to resolve the error 0x80073701.

    The CBS.log is a file that includes logs about components when they get installed or uninstalled during updates.

    The CBS.log file is located in the %windir%\Logs\CBS folder.

    If you find any error, then re-install a particular file.

    But, If there is no error in the CBS.log, you must execute the below command,

    DISM /Online /Cleanup-Image /ScanHealth

    This command can check for component store corruption. Hence when the command completes successfully, you will be able to install the IIS feature on your Windows Server.

    I hope the above fixes help you resolve the error 0x80073701, and you can install IIS features to your Server.

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.