How to maximum/open application in taskbar

Have your tested with Attach Window and Maximize Window activities?

If that doesn’t work, option 2 is to use Invoke Code to open the application instead:

Dim psiProgram As ProcessStartInfo = New ProcessStartInfo("NOTEPAD.EXE")
psiProgram.WindowStyle = ProcessWindowStyle.Maximized
Process.Start(psiProgram)