Thursday, 25 September 2014

Enable Or Disable a particular feature in Windows Feature (Win 7,8):

Inorder to disable or enable any Windows Features, the manual method requires the following steps,

1. Click Start and type "Trun Windows features on or off".
2. Press Enter and do select the particular feature that has to be altered.
3. Finally restart.


If Performed through command prompt, following are the steps required,

1. Open command prompt in admin mode.
2. Type the command and press enter to get the details of all the features in the system.

               dism /online /get-features | more

3. Type the command to enable a particular feature,
     
              dism /online /enable-feature /featurename:<feature name>

   Example: dism /online /enable-feature /featurename:TelnetClient

4. Type the command to disable a particular feature,
     
              dism /online /disable-feature /featurename:<feature name>

   Example: dism /online /disable-feature /featurename:TelnetClient

No comments: