I created a simple PowerShell script provide a pop-up which auto disappears in 10 sec. This script captures response as
Ok - 1
Cancle -2
and no response as - (-1)
I am able to run this script but not able to capture the value. Can someone please help me with capturing the value that powershell triggers? Attaching script and XAML - Remove .pdf to get the script filePowershell.ps1.pdf (413 Bytes)
$wshell.Popup(“Do you want to e-file”,10,“Done”,0x1)
and Press ok, I get the value as “1”. Now I want to use this value in Uipath for the run some condition. For that, I need this value to be captured. How can I do that?