From 6edb3481953b99b67670c93d4bb043b12a47db1b Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Wed, 4 Aug 2010 16:28:25 +0000 Subject: [PATCH] 2010-08-04 Ramon Novoa * modules/pandora_module.cc: Run action commands through cmd.exe. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3096 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_agents/win32/ChangeLog | 8 ++++++++ pandora_agents/win32/modules/pandora_module.cc | 3 +++ 2 files changed, 11 insertions(+) diff --git a/pandora_agents/win32/ChangeLog b/pandora_agents/win32/ChangeLog index bbb4b674eb..72f2c027ce 100644 --- a/pandora_agents/win32/ChangeLog +++ b/pandora_agents/win32/ChangeLog @@ -1,8 +1,16 @@ +2010-08-04 Ramon Novoa + + * modules/pandora_module.cc: Run action commands through cmd.exe. + 2010-08-04 Sancho Lerena * win32/bin/util/df_percent.vbs: New VBS plugin to detect all hardrives and return free disk on %. +2010-08-04 Ramon Novoa + + * modules/pandora_module.cc: Run action commands through cmd.exe. + 2010-08-04 Ramon Novoa * modules/pandora_module.cc: Changed sscanf format strings. They did diff --git a/pandora_agents/win32/modules/pandora_module.cc b/pandora_agents/win32/modules/pandora_module.cc index 8fbe683d0a..12138f9c25 100644 --- a/pandora_agents/win32/modules/pandora_module.cc +++ b/pandora_agents/win32/modules/pandora_module.cc @@ -669,6 +669,9 @@ Pandora_Module::addCondition (string condition) { } else { pandoraDebug ("Invalid module condition: %s", condition.c_str ()); } + + /* Run commands through cmd.exe */ + cond->command = "cmd.exe /c \"" + cond->command + "\""; } /**