Source path not found Error when Installing features and Roles for WSUS on Windows Server 2019 Standard

RockmanIT 256 Reputation points
2023-10-27T18:15:02.02+00:00

I'm trying to install WSUS on Server 2019 Standard. WSUS, and WID are selected along with additional features that are needed. However when I get top the "Confirm installations Selections" screen I get the message Highlighted in Yellow in the below Screenshot. I checked to make sure Windows update is accessible and has been updated, I've pointed to the Sources\sxs folder on the Server 2019 setup disc and ran sfc/scannow and I'm still getting the error. Any help with this would be appreciated. Screenshots below.

User's image

User's image

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,613 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,635 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Adam J. Marshall 9,121 Reputation points MVP
    2023-10-29T19:39:31.0133333+00:00

    Use an elevated PowerShell (Run as administrator) to install it

    https://www.ajtek.ca/wsus/how-to-setup-manage-and-maintain-wsus-part-1-choosing-your-server-os/

    Install-WindowsFeature -Name UpdateServices, UpdateServices-UI
    

    If you need to specify the source copy it to somewhere like C:\Temp\WinSxS and use

    Install-WindowsFeature -Name UpdateServices, UpdateServices-UI -Source "C:\Temp\WinSxS"
    
    0 comments No comments