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 New GUID to Clipboard

Description
This script will put a new randomly generated GUID on the clipboard.
Language
C#.net
Minimum Version
Created By
Copy new GUID to clipboard39915
Contributors
-
Date Created
Jan 9, 2020
Date Last Modified
Jan 9, 2020

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{
		BFS.Clipboard.SetText(Guid.NewGuid().ToString());
	}
}