using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Get the current window's process path
string processPath = BFS.Application.GetMainFileByWindow(windowHandle);
// Launch a new copy of the process
BFS.Application.Start(processPath, "");
}
}