HostInfo - Just installed and I like it a lot. One issue I had was the SNMP Version output was incorrect. The issue is the version command is a bit different in Windows for net-snmp.
Found the answer @
http://forums.cacti.net/post-74637.html
Would like to request a quick README or section in Documents for HostInfo plugin for Windows users.
Solution was to modifying hostinfo.php,
$output = shell_exec ("$path_snmpwalk --version 2>&1");
To this,
$output = shell_exec ("$path_snmpwalk -V 2>&1");
Took me a bit of searching to find this, and if it was a quick readme, I think it would help others.
Thanks for everything.