Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

A recent AVG and Avast antivirus update is preventing DisplayFusion 9.9 from launching on some systems.
If you're running into this issue, please update to the latest DisplayFusion 10.0 Beta.

Close All Chrome Windows

Description
This script will close all open Chrome windows.
Language
C#.net
Minimum Version
Created By
Keith Lammers (BFS)
Contributors
-
Date Created
Mar 14, 2016
Date Last Modified
Mar 14, 2016

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static void Run()
	{
		IntPtr[] windows = BFS.Window.GetAllWindowHandles();
		foreach (IntPtr window in windows)
		{
			if (BFS.Application.GetMainFileByWindow(window).EndsWith("chrome.exe"))
				BFS.Window.Close(window);
		}
	}
}