PowerShell Script to install and configure SNMP

The below PowerShell script will check if SNMP is installed, if it is not installed it will install the service and configure it. #!powershell # Setup Key Values ################################### ## Security Tab $managers = @("localhost","mgt1.knowledgeascent.com") $ReadOnlyCommunities = @("public") $ReadWriteCommunities = @("publicrw") ## Agent Tab $sysContact = "SNMPAdmin@knowledgeascent.com" $sysLocation = "KA Data Center" [...]