Bring Application in front

Is it possible to bring specific application in front?
XRUN will open the application and it will be in front but I want to work with already opened applications.

I recommend to use XRUN to call a Powershell script that does this. Here is one that brings a certain Window to the front:

Thank You.

Found easy option

create a vbs file and use following commands

Set objShell = WScript.CreateObject(“WScript.Shell”)
objShell.AppActivate(“notepad”)