diff --git a/pandora_agents/win32/ChangeLog b/pandora_agents/win32/ChangeLog
index 9e52c88bd1..1fd13499c8 100644
--- a/pandora_agents/win32/ChangeLog
+++ b/pandora_agents/win32/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-29  Ramon Novoa  <rnovoa@artica.es>
+
+	* modules/pandora_module_snmpget.cc: Modified the call to snmpget.exe
+	  to directly retrieve the value.
+
 2011-11-29  Ramon Novoa  <rnovoa@artica.es>
 
 	* modules/pandora_module.h,
diff --git a/pandora_agents/win32/modules/pandora_module_snmpget.cc b/pandora_agents/win32/modules/pandora_module_snmpget.cc
index 24195b0076..d6c1ac388a 100644
--- a/pandora_agents/win32/modules/pandora_module_snmpget.cc
+++ b/pandora_agents/win32/modules/pandora_module_snmpget.cc
@@ -30,7 +30,7 @@ using namespace Pandora_Modules;
  * @param host Host to be SNMPGeted.
  */
 Pandora_Module_SNMPGet::Pandora_Module_SNMPGet (string name, string version, string community, string agent, string oid, string advanced_options)
-					 : Pandora_Module_Exec (name, "snmpget.exe -v " + version + " -c " + community + " " + advanced_options + " " + agent + " " + oid + " 2>nul | tail.exe -1 | cut.exe -d\" \" -f 4- | tr.exe -d \\\"\\n") {
+					 : Pandora_Module_Exec (name, "snmpget.exe -OUevqt -v " + version + " -c " + community + " " + advanced_options + " " + agent + " " + oid + " 2>nul | tr.exe -d \\\"\\n") {
 	this->setKind (module_snmpget_str);
 }