icinga2/agent/windows-setup-agent/ServiceStatus.cs
Michael Friedrich c265e4c282 Windows Agent: Refine setup wizard text and add docs URL
Note for others: DO NOT manually fix whitespaces with sed
and variants. Ensure that tabs (4 spaces, keep tabs) are
set inside Visual Studio.
2019-07-31 13:47:31 +02:00

38 lines
748 B
C#

using System;
using System.Windows.Forms;
using System.ServiceProcess;
using System.Diagnostics;
namespace Icinga
{
public partial class ServiceStatus : Form
{
public ServiceStatus()
{
InitializeComponent();
try {
ServiceController sc = new ServiceController("icinga2");
txtStatus.Text = sc.Status.ToString();
} catch (InvalidOperationException) {
txtStatus.Text = "Not Available";
}
}
private void btnReconfigure_Click(object sender, EventArgs e)
{
new SetupWizard().ShowDialog(this);
}
private void btnOK_Click(object sender, EventArgs e)
{
Close();
}
private void btnOpenConfigDir_Click(object sender, EventArgs e) {
Process.Start("explorer.exe", Program.Icinga2DataDir);
}
}
}