diff --git a/apps/activedirectory/local/conf/dcdiag.xml b/apps/activedirectory/local/conf/dcdiag.xml
new file mode 100644
index 000000000..0a7e51ca6
--- /dev/null
+++ b/apps/activedirectory/local/conf/dcdiag.xml
@@ -0,0 +1,10 @@
+
+
+
+
+ passed test\s+(.*)
+ warning test\s+(.*)
+ failed test\s+(.*)
+
+
+
\ No newline at end of file
diff --git a/apps/activedirectory/local/mode/dcdiag.pm b/apps/activedirectory/local/mode/dcdiag.pm
new file mode 100644
index 000000000..88d585af5
--- /dev/null
+++ b/apps/activedirectory/local/mode/dcdiag.pm
@@ -0,0 +1,235 @@
+################################################################################
+# Copyright 2005-2014 MERETHIS
+# Centreon is developped by : Julien Mathis and Romain Le Merlus under
+# GPL Licence 2.0.
+#
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU General Public License as published by the Free Software
+# Foundation ; either version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program; if not, see .
+#
+# Linking this program statically or dynamically with other modules is making a
+# combined work based on this program. Thus, the terms and conditions of the GNU
+# General Public License cover the whole combination.
+#
+# As a special exception, the copyright holders of this program give MERETHIS
+# permission to link this program with independent modules to produce an executable,
+# regardless of the license terms of these independent modules, and to copy and
+# distribute the resulting executable under terms of MERETHIS choice, provided that
+# MERETHIS also meet, for each linked independent module, the terms and conditions
+# of the license of that module. An independent module is a module which is not
+# derived from this program. If you modify this program, you may extend this
+# exception to your version of the program, but you are not obliged to do so. If you
+# do not wish to do so, delete this exception statement from your version.
+#
+# For more information : contact@centreon.com
+# Authors : Quentin Garnier
+#
+####################################################################################
+
+package apps::activedirectory::local::mode::dcdiag;
+
+use base qw(centreon::plugins::mode);
+
+use strict;
+use warnings;
+use File::Basename;
+use XML::LibXML;
+use Win32;
+
+sub new {
+ my ($class, %options) = @_;
+ my $self = $class->SUPER::new(package => __PACKAGE__, %options);
+ bless $self, $class;
+
+ $self->{version} = '1.0';
+ $options{options}->add_options(arguments =>
+ {
+ "config:s" => { name => 'config', },
+ "language:s" => { name => 'language', default => 'en' },
+ "dfsr" => { name => 'dfsr', },
+ "noeventlog" => { name => 'noeventlog', },
+ "timeout:s" => { name => 'timeout', default => 30 },
+ });
+ $self->{os_is2003} = 0;
+ $self->{os_is2008} = 0;
+ $self->{os_is2012} = 0;
+
+ $self->{msg} = {ok => undef, warning => undef, critical => undef};
+ return $self;
+}
+
+sub check_options {
+ my ($self, %options) = @_;
+ $self->SUPER::init(%options);
+ if (defined($self->{option_results}->{config})) {
+ $self->{config_file} = $self->{option_results}->{config};
+ } else {
+ $self->{output}->add_option_msg(short_msg => "Need to specify config file option.");
+ $self->{output}->option_exit();;
+ }
+}
+
+sub check_version {
+ my ($self, %options) = @_;
+
+ our ($ver_string, $ver_major, $ver_minor, $ver_build, $ver_id) = Win32::GetOSVersion();
+ #"Operating system is " . "$ver_string - ($ver_id.$ver_major.$ver_minor.$ver_build)\n";
+
+ # 5.1, 5.2 => XP/2003
+ # 6.0, 6.1 => Vista/7/2008
+ # 6.2, 6.3 => 2012
+ if ($ver_major == 5 && ($ver_minor == 1 || $ver_minor == 2)) {
+ $self->{os_is2003} = 1;
+ } elsif ($ver_major == 6 && ($ver_minor == 0 || $ver_minor == 1)) {
+ $self->{os_is2008} = 1;
+ } elsif ($ver_major == 6 && ($ver_minor == 2 || $ver_minor == 3)) {
+ $self->{os_is2012} = 1;
+ } else {
+ $self->{output}->output_add(severity => 'UNKNOWN',
+ short_msg => 'OS version ' . $ver_major . '.' . $ver_minor . ' not managed.');
+ return 1;
+ }
+ return 0;
+}
+
+sub load_xml {
+ my ($self, %options) = @_;
+
+ # Load XML File
+ my $parser = XML::LibXML->new();
+ my $doc = $parser->parse_file($self->{config_file});
+ my $nodes = $doc->getElementsByTagName('dcdiag');
+ if ($nodes->size() == 0) {
+ $self->{output}->output_add(severity => 'UNKNOWN',
+ short_msg => 'Cannot find a node in XML Config file');
+ return 1;
+ }
+
+ my $language_found = 0;
+ foreach my $node ($nodes->get_nodelist()) {
+ if ($node->getAttribute('language') eq $self->{option_results}->{language}) {
+ $language_found = 1;
+ my $messages_node = $node->getElementsByTagName('messages');
+ foreach my $node2 ($messages_node->get_nodelist()) {
+ foreach my $element_msg ($node2->getChildrenByTagName('*')) {
+ $self->{msg}->{$element_msg->nodeName} = $element_msg->textContent if (exists($self->{msg}->{$element_msg->nodeName}));
+ }
+ }
+ last;
+ }
+ }
+
+ if ($language_found == 0) {
+ $self->{output}->output_add(severity => 'UNKNOWN',
+ short_msg => "Cannot found language '" . $self->{option_results}->{language} . "' in XML Config file");
+ return 1;
+ }
+
+ foreach my $label (keys %{$self->{msg}}) {
+ if (!defined($self->{msg}->{$label})) {
+ $self->{output}->output_add(severity => 'UNKNOWN',
+ short_msg => "Message '" . $label . "' for language '" . $self->{option_results}->{language} . "' not defined in XML Config file");
+ return 1;
+ }
+ }
+
+ return 0;
+}
+
+sub dcdiag {
+ my ($self, %options) = @_;
+
+ my $dcdiag_cmd = 'dcdiag /test:services /test:replications /test:advertising /test:fsmocheck /test:ridmanager /test:machineaccount';
+ $dcdiag_cmd .= ' /test:frssysvol' if ($self->{os_is2003} == 1);
+ $dcdiag_cmd .= ' /test:sysvolcheck' if ($self->{os_is2008} == 1 || $self->{os_is2012} == 1);
+
+ if (!defined($self->{option_results}->{noeventlog})) {
+ $dcdiag_cmd .= ' /test:frsevent /test:kccevent' if ($self->{os_is2003} == 1);
+ $dcdiag_cmd .= ' /test:frsevent /test:kccevent' if (($self->{os_is2008} == 1 || $self->{os_is2012} == 1) && !defined($self->{option_results}->{dfsr}));
+ $dcdiag_cmd .= ' /test:dfsrevent /test:kccevent' if (($self->{os_is2008} == 1 || $self->{os_is2012} == 1) && defined($self->{option_results}->{dfsr}));
+ }
+
+ my $stdout = centreon::plugins::misc::windows_execute(output => $self->{output},
+ timeout => $self->{option_results}->{timeout},
+ command => $dcdiag_cmd . " 2>&1",
+ command_path => undef,
+ command_options => undef);
+
+ my $match = 0;
+ foreach my $line (split /\n/, $stdout) {
+ if ($line =~ /$self->{msg}->{ok}/) {
+ $match = 1;
+ $self->{output}->output_add(severity => 'OK',
+ short_msg => $1);
+ } elsif ($line =~ /$self->{msg}->{critical}/) {
+ $match = 1;
+ $self->{output}->output_add(severity => 'CRITICAL',
+ short_msg => 'test ' . $1);
+ } elsif ($line =~ /$self->{msg}->{warning}/) {
+ $match = 1;
+ $self->{output}->output_add(severity => 'WARNING',
+ short_msg => 'test ' . $1);
+ }
+ }
+
+ if ($match == 0) {
+ $self->{output}->output_add(severity => 'UNKNOWN',
+ short_msg => 'Cannot match output test (maybe you need to set the good language)');
+ return 1;
+ }
+
+ return 0;
+}
+
+sub run {
+ my ($self, %options) = @_;
+
+ if ($self->load_xml() == 0 && $self->check_version() == 0) {
+ $self->dcdiag();
+ }
+
+ $self->{output}->display();
+ $self->{output}->exit();
+}
+
+1;
+
+__END__
+
+=head1 MODE
+
+Check Windows Active Directory Health (use 'dcdiag' command).
+
+=over 8
+
+=item B<--config>
+
+command can be localized by using a configuration file.
+This parameter can be used to specify an alternative location for the configuration file
+
+=item B<--language>
+
+Set the language used in config file (default: 'en').
+
+=item B<--dfsr>
+
+Specifies that SysVol replication uses DFS instead of FRS (Windows 2008 or later)
+
+=item B<--noeventlog>
+
+Don't run the dc tests kccevent, frsevent and dfsrevent
+
+=item B<--timeout>
+
+Set timeout time for command execution (Default: 30 sec)
+
+=back
+
+=cut
\ No newline at end of file
diff --git a/apps/activedirectory/local/plugin.pm b/apps/activedirectory/local/plugin.pm
new file mode 100644
index 000000000..c84d9729b
--- /dev/null
+++ b/apps/activedirectory/local/plugin.pm
@@ -0,0 +1,64 @@
+################################################################################
+# Copyright 2005-2014 MERETHIS
+# Centreon is developped by : Julien Mathis and Romain Le Merlus under
+# GPL Licence 2.0.
+#
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU General Public License as published by the Free Software
+# Foundation ; either version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program; if not, see .
+#
+# Linking this program statically or dynamically with other modules is making a
+# combined work based on this program. Thus, the terms and conditions of the GNU
+# General Public License cover the whole combination.
+#
+# As a special exception, the copyright holders of this program give MERETHIS
+# permission to link this program with independent modules to produce an executable,
+# regardless of the license terms of these independent modules, and to copy and
+# distribute the resulting executable under terms of MERETHIS choice, provided that
+# MERETHIS also meet, for each linked independent module, the terms and conditions
+# of the license of that module. An independent module is a module which is not
+# derived from this program. If you modify this program, you may extend this
+# exception to your version of the program, but you are not obliged to do so. If you
+# do not wish to do so, delete this exception statement from your version.
+#
+# For more information : contact@centreon.com
+# Authors : Quentin Garnier
+#
+####################################################################################
+
+package apps::activedirectory::local::plugin;
+
+use strict;
+use warnings;
+use base qw(centreon::plugins::script_simple);
+
+sub new {
+ my ($class, %options) = @_;
+ my $self = $class->SUPER::new(package => __PACKAGE__, %options);
+ bless $self, $class;
+ # $options->{options} = options object
+
+ $self->{version} = '0.1';
+ %{$self->{modes}} = (
+ 'dcdiag' => 'apps::activedirectory::local::mode::dcdiag',
+ );
+
+ return $self;
+}
+
+1;
+
+__END__
+
+=head1 PLUGIN DESCRIPTION
+
+Check Windows ActiveDirectory locally.
+
+=cut
diff --git a/centreon/plugins/misc.pm b/centreon/plugins/misc.pm
index f3659bb97..b6b768681 100644
--- a/centreon/plugins/misc.pm
+++ b/centreon/plugins/misc.pm
@@ -38,6 +38,45 @@ package centreon::plugins::misc;
use strict;
use warnings;
+# Function more simple for Windows platform
+sub windows_execute {
+ my (%options) = @_;
+ my $result = undef;
+ my $stdout = '';
+ my ($exit_code, $cmd);
+
+ $cmd = $options{command_path} . '/' if (defined($options{command_path}));
+ $cmd .= $options{command} . ' ' if (defined($options{command}));
+ $cmd .= $options{command_options} if (defined($options{command_options}));
+
+ eval {
+ local $SIG{ALRM} = sub { die "Timeout by signal ALARM\n"; };
+ alarm( $options{timeout} );
+ $stdout = `$cmd`;
+ $exit_code = ($? >> 8);
+ alarm(0);
+ };
+
+ if ($@) {
+ $options{output}->output_add(severity => 'UNKNOWN',
+ short_msg => "Command too long to execute (timeout)...");
+ $options{output}->display();
+ $options{output}->exit();
+ }
+ chomp $stdout;
+ $stdout =~ s/\r//g;
+
+ if ($exit_code != 0) {
+ $stdout =~ s/\n/ - /g;
+ $options{output}->output_add(severity => 'UNKNOWN',
+ short_msg => "Command error: $stdout");
+ $options{output}->display();
+ $options{output}->exit();
+ }
+
+ return $stdout;
+}
+
sub execute {
my (%options) = @_;
my $cmd = '';