How to check if Windows Feature is installed and enabled with DISM.exe?
Asked
Active
Viewed 3.1k times
1 Answers
28
The command you are looking for is
dism /online /get-features
You can also use
dism /online /get-featureinfo /featurename:XXXXX
Where XXXXX is the name of the specific feature you are after. E.g TelnetServer
Don't forget to use an elevated command prompt with DISM.
Nathan Kerr
- 490
- 4
- 8