Add-Type -AssemblyName System.Windows.Forms
$Form = New-Object system.Windows.Forms.Form
$Form.Text = "Form"
$Form.BackColor = "#c08888"
$Form.TopMost = $true
$Form.Width = 692
$Form.Height = 465
$textBox2 = New-Object system.windows.Forms.TextBox
$textBox2.Text = "-----------------------------------------------Hello win13.ru !--------------------------------------------------------------"
$textBox2.BackColor = "#452dba"
$textBox2.ForeColor = "#3009f1"
$textBox2.Width = 541
$textBox2.Height = 20
$textBox2.location = new-object system.drawing.point(57,64)
$textBox2.Font = "Microsoft Sans Serif,10"
$Form.controls.Add($textBox2)
$button3 = New-Object system.windows.Forms.Button
$button3.BackColor = "#7a6faf"
$button3.Text = "like it"
$button3.Width = 175
$button3.Height = 108
$button3.location = new-object system.drawing.point(352,239)
$button3.Font = "Microsoft Sans Serif,10"
$Form.controls.Add($button3)
$checkBox4 = New-Object system.windows.Forms.CheckBox
$checkBox4.Text = "cool"
$checkBox4.AutoSize = $true
$checkBox4.Width = 95
$checkBox4.Height = 20
$checkBox4.location = new-object system.drawing.point(12,34)
$checkBox4.Font = "Microsoft Sans Serif,10"
$Form.controls.Add($checkBox4)
$comboBox5 = New-Object system.windows.Forms.ComboBox
$comboBox5.Text = "great vlog"
$comboBox5.BackColor = "#5032df"
$comboBox5.Width = 50
$comboBox5.Height = 20
$comboBox5.location = new-object system.drawing.point(592,89)
$comboBox5.Font = "Microsoft Sans Serif,10"
$Form.controls.Add($comboBox5)
$listView6 = New-Object system.windows.Forms.ListView
$listView6.BackColor = "#8379b4"
$listView6.Text = "Windows XP"
$listView6.Width = 80
$listView6.Height = 30
$listView6.location = new-object system.drawing.point(97,192)
$Form.controls.Add($listView6)
$PictureBox7 = New-Object system.windows.Forms.PictureBox
$PictureBox7.Width = 226
$PictureBox7.Height = 140
$PictureBox7.Width = 226
$PictureBox7.Height = 140
$PictureBox7.location = new-object system.drawing.point(250,110)
$Form.controls.Add($PictureBox7)
[void]$Form.ShowDialog()
$Form.Dispose()