powershellscript skal outputte værdien jeg skriver i en form text box som en værdi i en vaariabel efter formen er lukket ved klik på knappen
Hej Jeg tror det er et nemt spørgsmål.fandt denne kode på nettet og ville genbruge den og smide outputtet fra text boksen ind som variabel når scritet kører videre.. Hvad skal man skrive for at det ka lade sig gøre?
# Load the Winforms assembly
[reflection.assembly]::LoadWithPartialName( "System.Windows.Forms")
# Create the form
$form = New-Object Windows.Forms.Form
#Set the dialog title
$form.text = "PowerShell WinForms Example"
$label = New-Object Windows.Forms.Label
$label.Location = New-Object Drawing.Point 50,30
$label.Size = New-Object Drawing.Point 200,15
$label.text = "Enter your name and click the button"
$textfield = New-Object Windows.Forms.TextBox
$textfield.Location = New-Object Drawing.Point 50,60
$textfield.Size = New-Object Drawing.Point 200,30
$button = New-Object Windows.Forms.Button
$button.text = "Greeting"
$button.Location = New-Object Drawing.Point 100,90
on the Label.
$button.add_click({
$label.Text = $textfield.text
;$Form.Close()
})
# Add the controls to the Form
$form.controls.add($button)
$form.controls.add($label)
$form.controls.add($textfield)
# Display the dialog
$form.ShowDialog()