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.

Toggle Windows Taskbar Visibility

Description
This script requires Nircmd to be in your path: https://www.nirsoft.net/utils/nircmd.html. When you run it, it will hide or show the Windows taskbar.
Language
C#.net
Minimum Version
Created By
nan0
Contributors
-
Date Created
Apr 20, 2022
Date Last Modified
Apr 20, 2022

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{    
		BFS.Application.Start("nircmd", "win togglehide class Shell_TrayWnd");
		BFS.Application.Start("nircmd", "win togglehide class Shell_SecondaryTrayWnd");		
	}
}