Is there a way to get the IE object when working with VDI & Citrix?

80 views Asked by At

Is it possible to get the IE object using VBScript inside Citrix(VDI) ?

I already know I can run VBScripts and work with IE objects (If I create them first).

I have tried using the GetObject method as well as WScript.Shell.Windows method.

1

There are 1 answers

2
Deepak-MSFT On

can you try below script to check whether it is working or not.

Dim IE
Dim MyDocument
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = 0
IE.navigate "https://google.com"

Let us know about your testing results.