Hi, @jamar clow
Thank you for posting in Microsoft Q&A forum.
When you install distribution point role on Windows Server, by default, during the installation, all the required prerequisites are installed. In rare cases, the prerequisites fail to install and that’s when the distribution point fails to install.
We can install IIS base components on SCCM Distribution Point manually to solve the issue, on the Windows Server, run PowerShell as an administrator and type the below command. This will install all the IIS components required for setting up a distribution point.
dism.exe /online /norestart /enable-feature /ignorecheck /featurename:"IIS-WebServerRole" /featurename:"IIS-WebServer" /featurename:"IIS-CommonHttpFeatures" /featurename:"IIS-StaticContent" /featurename:"IIS-DefaultDocument" /featurename:"IIS-DirectoryBrowsing" /featurename:"IIS-HttpErrors" /featurename:"IIS-HttpRedirect" /featurename:"IIS-WebServerManagementTools" /featurename:"IIS-IIS6ManagementCompatibility" /featurename:"IIS-Metabase" /featurename:"IIS-WindowsAuthentication" /featurename:"IIS-WMICompatibility" /featurename:"IIS-ISAPIExtensions" /featurename:"IIS-ManagementScriptingTools" /featurename:"MSRDC-Infrastructure" /featurename:"IIS-ManagementService"
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Add comment".