Windows 10 - SNMP Missing from Windows Features
Solved this problem with a temporary fix, I was able to resolve this issue. This problem appears to be limited to version 1809, and Microsoft plans to address it in a future update.
Check if SNMP is installed:
Open Powershell
with Administrator credentials
issue the following command to check if SNMP is installed:
1Get-WindowsCapability -Online -Name "SNMP*"
Install SNMP:
To install SNMP
1Add-WindowsCapability -Online -Name "SNMP.Client~~~~0.0.1.0"
2Get-WindowsCapability -Online -Name "SNMP*"
Note
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.