Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Restore RDP Window, Move to Next Monitor, Maximize

Description
This script will restore a full screen RDP window to windowed mode, move it to the next monitor, then maximize it. This is a workaround for not being able to move the connection bar to the next monitor when an RDP window is full screen. Note, this only works if you have "Apply Windows key combinations on this computer" set on the Local Resources tab in the RDP connection settings.
Language
C#.net
Minimum Version
Created By
Keith Lammers (BFS)
Contributors
-
Date Created
Jun 8, 2018
Date Last Modified
Jun 8, 2018

Scripted Function (Macro) Code

using System;
using System.Drawing;

// The 'windowHandle' parameter will contain the window handle for the:
//   - Active window when run by hotkey
//   - Trigger target when run by a Trigger rule
//   - TitleBar Button owner when run by a TitleBar Button
//   - Jump List owner when run from a Taskbar Jump List
//   - Currently focused window if none of these match
public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{
		// Restore the window
		BFS.Window.Restore(windowHandle);
				
		// Move the window to the next monitor and maximize it
		BFS.Window.MoveToNextMonitorMaximized(windowHandle);
	}
}