Daily Weekly Monthly

Daily Shaarli

All links of one day in a single page.

May 31, 2020

SNMP missing from windows features in windows 10 - Microsoft Community

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.