Below is an example of how I open Zoom and Teams
private void button2_Click_1(object sender, EventArgs e)
{
string user = System.Windows.Forms.SystemInformation.UserName.ToString();
System.Diagnostics.Process.Start("C:/Users/" + user + "/AppData/Local/Microsoft/Teams/current/Teams.exe");
}
private void button1_Click_1(object sender, EventArgs e)
{
string user = System.Windows.Forms.SystemInformation.UserName.ToString();
System.Diagnostics.Process.Start("C:/Users/" + user + "/AppData/Roaming/Zoom/bin/Zoom.exe");
}
Note: Unlike Zoom and Teams that when installed they create a folder where we find all the installation supplements, but Whiteboard does not have any folder against these supplements. That's why it's very difficult to open it from my application in C#