Running a Powershell script behind a user friendly Gui is a great experience .
Here we learn the step by step process to create a Powershell Gui form.To create Gui in Powershell the first thing we need to learn how to create a form.
########################### Load form System Assembly #############################
[reflection.assembly]::LoadWithPartialName( "System.Windows.Forms") | Out-Null
############################ Create the form ######################################
$form = New-Object Windows.Forms.Form
#################### Provide the Form Size --Width and Height##########################
$Form.ClientSize = '400,400'
#################################Name of the form ################################
$Form.text = "My Form"
###############################Add Show dialog ##################################
$form.ShowDialog()
###############################################################################
Open powershell.Exe and run the above code to open the powershell gui form
Here we go ...!
Now we learned how to create form ..Next we are going to learn how to add controls over the form
Continue........!
Keep Watching ..
Here we learn the step by step process to create a Powershell Gui form.To create Gui in Powershell the first thing we need to learn how to create a form.
########################### Load form System Assembly #############################
[reflection.assembly]::LoadWithPartialName( "System.Windows.Forms") | Out-Null
############################ Create the form ######################################
$form = New-Object Windows.Forms.Form
#################### Provide the Form Size --Width and Height##########################
$Form.ClientSize = '400,400'
#################################Name of the form ################################
$Form.text = "My Form"
###############################Add Show dialog ##################################
$form.ShowDialog()
###############################################################################
Open powershell.Exe and run the above code to open the powershell gui form
Here we go ...!
Now we learned how to create form ..Next we are going to learn how to add controls over the form
Continue........!
Keep Watching ..