I want to maximise Citrix window using VB Script. The shortcut to maximise is Windows+Up arrow key. I kept the window active and I executed the below code to maximise Citrix application window using VB script.
Dim oShell : oShell = CreateObject("WScript.Shell")
oShell.SendKeys("#{UP}")
oShell.sendkeys("# ")
oShell.sendkeys("{UP}")
The above script is not maximising my Citrix window. Can anyone help me where am I going wrong.