1. icon
2. code
Process[] p = Process.GetProcessesByName("KeyRemapper");
if (p.Length > 0)
{
if (DateTime.Now.Subtract(p[0].StartTime) >= new TimeSpan(0, 29, 0))
{
p[0].Kill();
Process.Start("D:\\Program Files\\Key Remapper\\KeyRemapper.exe");
}
}
3. install location