Why dont you make it your self ?Its pretty easy, Open up Visual 2008 C# then Form one make a button double click it and to start a program let do WoW.exe at the default path
Code:
private void button2_Click(object sender, EventArgs e)
{
if (File.Exists("C/Program Files/World of Warcraft/WoW.exe"))
{
System.Diagnostics.Process.Start(@"C:\Program Files\World of Warcraft\WoW.exe");
}
Its as simple as that just dont include private void part at the top as it should already be there once you made the program,
If (file.exists) is to avoid a critical error if the file isnt there, if the file isnt there it wont do anything,
Hope this helps