There are optional features available in Windows Operating Systems and Windows 10 is not an exception either.
We can easily enable or disable those features via "Turn Windows features on or off" under Control Panel.
Instead of using Control Panel it is easier to use PowerShell in this regard and manage the optional features.
Open PowerShell as Administrator and type the following command:
get-windowsoptionalfeature -online
Use the following command to get more details on a specific feature:
get-windowsoptionalfeature -online -featurename
Enable-WindowsOptionalFeature -Online -FeatureName “DirectPlay” -All
Disable-WindowsOptionalFeature -Online -FeatureName “DirectPlay”
[The above article is based on Windows 10 Enterprise Insider Preview Build 16257] Back to Top