using System;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Diagnostics;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
Process proc = new Process();
proc.StartInfo.FileName = "CMD.exe";
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.Arguments = "/c shutdown.exe /a";
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
proc.Start();
proc.WaitForExit();
}
}