Summary: Use Windows PowerShell to find disabled Windows features in Windows 8.
How can I use Windows PowerShell 3.) in Windows 8 to find disabled Windows features?
Use the Get-WindowsOptionalFeature cmdlet with the –online parameter and filter for a state of disabled:
Get-WindowsOptionalFeature -Online | ? state -EQ 'disabled'