Add-Type -AssemblyName System.Windows.Forms
$StartWindows = [System.Windows.Forms.Form]
$Windows = New-Object $StartWindow
$Windows.ClientSize = '500, 500'
$Windows.Text = 'Window'
$Windows.BackColor = '#000000'
$Windows.ShowDialog()
$Windows.Dispose()