I’m new to powershell and I am trying to figure out how to get variable data onto a new form.
I have a main menu which asks for user input for a test system, ‘ts’.
$TSTextBox
I also ask for an OS Version, x64 or x86 per checkboxes.
$x64CB
$x86CB
After the user inputs data and clicks OK. I would like to have the user input display onto a popup window to verify the information is correct. My problem is that the inputted data does not display onto the popup window. Also with the checkboxes, if one is selected, I do not want the user to be allowed to select the other. It would be either x64 or x86, not both.
I left an example within the txt doc with the Host System, ‘computer name’, on how I’d like the information displayed. Can someone assist me on figuring this out?