Share via

SNMP missing from windows features in windows 10

Anonymous
2018-11-17T19:25:16+00:00

I just installed a fresh new copy of windows 10 and did all the updates to 1803.  When i went to enable SNMP the option is outright missing from the windows features.  How can I fix this so i can enable SNMP on my new windows 10 installation?

It's not in the services but the SNMP Trap is. 

Windows for home | Windows 10 | Settings

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

14 answers

Sort by: Most helpful
  1. Anonymous
    2018-11-20T18:51:38+00:00

    Solved this problem with a temporary fix.  This issue is apparently only in version 1809 & Microsoft will attempt to address it in a future update. 

    The fix is as follows:

    Open Powershell with Administrator credentials

    issue the following commands:

    Get-WindowsCapability -Online -Name "SNMP*"

    Will show Not Present

    Add-WindowsCapability -Online -Name "SNMP.Client~~~~0.0.1.0"

    Get-WindowsCapability -Online -Name "SNMP*"

    Should now show Installed

    The feature still does not show in the turn windows features on or off window however the service is installed and you can view and configure from services.msc  I have verified that the service works as expected.

    200+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2018-11-21T07:33:16+00:00

    For me the "Add-WindowsCapability -Online -Name "SNMP.Client~~~~0.0.1.0"" command shows an error:

    Add-WindowsCapability : Add-WindowsCapability failed. Error code = 0x800f0954

    At line:1 char:1

    • Add-WindowsCapability -Online -Name "SNMP.Client~~~~0.0.1.0"
    • 
      

        + CategoryInfo          : NotSpecified: (:) [Add-WindowsCapability], COMException

        + FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand

    Any ideas?

    10+ people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2018-11-19T04:16:17+00:00

    Also, I tried the following and this was the result.

    C:\WINDOWS\system32>dism.exe /online /enable-feature /featurename:"SNMP" /featurename:"WMISnmpProvider"

    Deployment Image Servicing and Management tool

    Version: 10.0.17763.1

    Image Version: 10.0.17763.134

    Error: 0x800f080c

    Feature name SNMP is unknown.

    Feature name WMISnmpProvider is unknown.

    A Windows feature name was not recognized.

    Use the /Get-Features option to find the name of the feature in the image and try the command again.

    The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log

    10+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2019-03-16T17:52:08+00:00

    Same problem and this did work for me. thanks - easy button

    9 people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2018-11-22T19:29:54+00:00

    SNMP has been deprecated on Windows 10 1809. Please keep in mind, Windows 10 uses the same code as Windows Server,  If you want to get more information about this, please check this link:

    Features Removed or Deprecated in Windows Server 2012

    https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/hh831568(v=ws.11)

    SNMP

    SNMP is deprecated. Instead, use the Common Information Model (CIM), which is supported by the WS-Management web services protocol and implemented as Windows Remote Management.

    https://docs.microsoft.com/en-us/windows/desktop/WmiSdk/common-information-model

    8 people found this answer helpful.
    0 comments No comments