WebJEA
WebJEA copied to clipboard
How to display second a form
Hi, I would like to display a second form after the first form. How can I do that? For example, depending on the answer from the first form, the user must enter a confirmation. Thanks
It's not possible to do this as you've described. However, you could do one of the following:
-
Add a switch or boolean field, something like [Parameter(Mandatory,HelpMessage="I confirm I want to delete this account")][switch]$Confirm
-
You could also link to another form, however that form would already be visible to the user and they could click on that form directly.
Hi Mark Sorry that I ask again. Can you give me an example of how I can link to another form? Many Thanks
Sure! Here is an example. To link to another form, you would write-host or write-output "[[a|URI|LINK]]" where URI is the URI you want, and LINK is what you want to display.
You may want to check out the presentation I did on this. Despite some technical issues, it covers the majority of the features.