How to check if SNMP is enabled to your computer. QUE.com › Forums › 18 – Technology › How to check if SNMP is enabled to your computer. Tagged: snmp This topic has 3 replies, 1 voice, and was last updated 8 months, 1 week ago by Support @QUE.COM. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts August 31, 2022 at 1:54 pm #51209 Support @QUE.COMKeymaster Open PowerShell (in Administrator mode). Enter the command to check SNMP status. Get-WindowsCapability -Online -Name “SNMP*” To disable it, run this command. Get-WindowsCapability -Online -Name “SNMP*” October 4, 2022 at 1:45 pm #51462 Support @QUE.COMKeymaster You can enable all rules or just a specific one: Get-NetFirewallrule -DisplayName *snmp* | Enable-NetFirewallRule Get-NetFirewallrule SNMP-Out-UDP | Disable-NetFirewallRule source: woshub.com/install-configure-snmp-service-windows/ October 4, 2022 at 1:46 pm #51463 Support @QUE.COMKeymaster Make sure that SNMP services are running: Get-Service SNMP* October 4, 2022 at 1:49 pm #51464 Support @QUE.COMKeymaster we can use powershell to check if it is present on the system, if it is, we can also use powershell script to uninstall it. 1. check if it is present: Get-WindowsCapability -Online -Name “SNMP*” 2. Then to install it run: Remove-WindowsCapability -Online -Name “SNMP.Client~~~~0.0.1.0” Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Connect with Login with Google Prove your humanity 2 + 10 = Log In