Video Tutor: List Windows Features using Command Prompt & Windows PowerShell
In this video tutorial, we will check out How to List All Windows Features using Command Prompt and Windows PowerShell. The following are the commands used in this video.
CMD Command:
dism /online /get-features /format:table
PowerShell Command:
Get-WindowsOptionalFeature -Online
Sort Enabled Windows Features using PowerShell:
Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq 'Enabled'}
Sort Disabled Windows Features using PowerShell:
Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq 'Disabled'}
Have Queries?
If you have any queries about the above video, kindly let us know in the comments section.