i have a script which created a small windows gui form with buttons depending on the scenarios;
-> on clicking, these buttons open respective files on remote file shares;following is the code;
$run.Add_Click({Invoke-Expression "Powershell \\Fileshare\$Random_File.Doc"}.GetNewClosure())
-> my issue is eventhough after the click the file opens ; the form still hangs arround in the back ground; I want to know how to close it(and even better if i can close whole powershell too) ; i tried to embed ";exit" inside invoke but it gave errors , is there any other way to do it?
Please ask me if any questions or clarifications required.