private static void Install()
 {
     InstallUtils.InstallServices(typeof(Program).Assembly);
 }
 private static void Uninstall()
 {
     InstallUtils.StopService("Kafka");
     InstallUtils.StopService("ZooKeeper");
     InstallUtils.UninstallServices(typeof(Program).Assembly);
 }