public static void KillBattlelogium()
{
Process.Start(new ProcessStartInfo()
{
FileName = "taskkill",
Arguments = "/im Battlelogium.UI.BF3.exe /f",
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
}).WaitForExit();
Process.Start(new ProcessStartInfo()
{
FileName = "taskkill",
Arguments = "/im Battlelogium.UI.BF4.exe /f",
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
}).WaitForExit();
Process.Start(new ProcessStartInfo()
{
FileName = "taskkill",
Arguments = "/im Battlelogium.UI.BFH.exe /f",
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
}).WaitForExit();
Process.Start(new ProcessStartInfo()
{
FileName = "taskkill",
Arguments = "/im Battlelogium.UI.MOHW.exe /f",
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
}).WaitForExit();
}