bring-cmd-window-foreground.ps1 389 B

123456789
  1. Add-Type @"
  2. using System;
  3. using System.Runtime.InteropServices;
  4. public static class ConsoleForegroundHelper {
  5. [DllImport("user32.dll")] public static extern bool SetForegroundWindow(IntPtr windowHandle);
  6. [DllImport("kernel32.dll")] public static extern IntPtr GetConsoleWindow();
  7. }
  8. "@
  9. [void][ConsoleForegroundHelper]::SetForegroundWindow([ConsoleForegroundHelper]::GetConsoleWindow())