I am getting an error when I run this command in PowerShell:
Install-WindowsFeature -Name Web-Net-Ext -source D:\Sources\SxS
Install-WindowsFeature : The request to add or remove features on the specified server failed. Installation of one or more roles, role services, or features failed. The source files could not be found.
Every article and blog I've read says that that path needs to be specified. How can a reference to this folder be obtained?
Figured it out
this is mounted by default to D:
Copy the /sources/sxs folder to wherever it needs to go. by default, the SxS file will be at D:\Sources\SxS
run the command :D
Install-WindowsFeature -Name Web-Net-Ext -source D:\Sources\SxS