Created
August 9, 2023 10:09
-
-
Save lukaszjablonski/924b68ba1e9556aa2e855cc35e0eefda to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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