From 8f875dd51ff75591be17d0366234cbe5a620f93a Mon Sep 17 00:00:00 2001 From: Jean Flach Date: Mon, 14 Mar 2016 16:37:15 +0100 Subject: [PATCH] Fix Windows Agent failing with special characters refs #11327 --- agent/windows-setup-agent/SetupWizard.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/agent/windows-setup-agent/SetupWizard.cs b/agent/windows-setup-agent/SetupWizard.cs index 6186f3311..1b56a3b36 100644 --- a/agent/windows-setup-agent/SetupWizard.cs +++ b/agent/windows-setup-agent/SetupWizard.cs @@ -208,10 +208,10 @@ namespace Icinga if (chkAcceptCommands.Checked) args += " --accept-commands"; - args += " --ticket " + txtTicket.Text; - args += " --trustedcert " + _TrustedFile; - args += " --cn " + txtInstanceName.Text; - args += " --zone " + txtInstanceName.Text; + args += " --ticket \"" + txtTicket.Text + "\""; + args += " --trustedcert \"" + _TrustedFile + "\""; + args += " --cn \"" + txtInstanceName.Text + "\""; + args += " --zone \"" + txtInstanceName.Text + "\""; if (!RunProcess(Program.Icinga2InstallDir + "\\sbin\\icinga2.exe", "node setup" + args,