Product: PowerShell Universal
Version: 2.12.4
Having trouble figuring this one out. I have a new Page, with a table. That table gets it data from an API that grabs user from AD and creates a hastable for each user returned with some values like Name, Sam, UPN, etc.
I want to add a column to the table with a button, called something like “Detailed Search”. When the button is clicked it runs a script at the moment. The contents of the script are super simple. It is simply:
Get-ADUser -Identity $InputObject.Sam
When I click the button on the Page, it looks like nothing happens. But if I go back to UA and look at Jobs, there is a new Job that just ran and sure enough it gets me the AD user info from the button push! Great! But what I really want is for the button push to open a new web page to another Page where that data is shown. How would I go about doing that? Thanks!