radio buttons through powershell

how to create radiobuttons in powershell 

i am select  radio button one then giving a message is you are selecting radio button one---> through powershell

plz h

May 30th, 2015 4:46pm

PowerShell does not support Radio Buttons.  You would have to earn how to use Windows Foms and create a form to do that.

Add-Type -AssemblyName System.windows.Forms
$form=New-Object System.Windows.Forms.Form
$rb=New-Object System.Windows.Forms.RadioButton
$rb.Text='My New Label'
$form.Controls.Add($rb)
$form.ShowDialog()

Free Windows Admin Tool Kit Click here and download it now
May 30th, 2015 5:55pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics