Skip to content

Instantly share code, notes, and snippets.

@lukaszjablonski
Created August 9, 2023 10:09
Show Gist options
  • Save lukaszjablonski/924b68ba1e9556aa2e855cc35e0eefda to your computer and use it in GitHub Desktop.
Save lukaszjablonski/924b68ba1e9556aa2e855cc35e0eefda to your computer and use it in GitHub Desktop.
# Init PowerShell Gui
Add-Type -AssemblyName System.Windows.Forms
# Create a new form
$GUIform = New-Object system.Windows.Forms.Form
$GUIform.MaximizeBox = $false # no maximize
$GUIform.FormBorderStyle = 'Fixed3D' # no resize
# Define the size, title and background color
$GUIform.ClientSize = '500,300'
$GUIform.text = "Hello world!"
$GUIform.BackColor = "#ffffff"
# Display the form
[void]$GUIform.ShowDialog()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment