Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Copy Window

Description
This script will open a new instance of the focused window.
Language
C#.net
Minimum Version
Created By
Keith Lammers (BFS)
Contributors
-
Date Created
Feb 2, 2017
Date Last Modified
Feb 2, 2017

Scripted Function (Macro) Code

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, "");
	}
}