Hi Team,
I have a link which is to be published on Xenapp server for few users.
The IE shall be in Lockdown mode, I can either use IE with - K switch or use a script. I choose a script becasue i can customise the page size.
Now the problem is there is a small hyperlink in the website which is to be published , if we click this link it opens a new IE without Lockdown mode. I am using the below script, is there a way which can help me stop this redirection or if redirection happens also the new IE is also in Lockdown mode....
Set oIE1 = WScript.CreateObject ("InternetExplorer.Application")
oIE1.Navigate "http://xym.com:8080/login.do"
oIE1.Visible = 1
oIE1.AddressBar = 0
oIE1.StatusBar = 0
oIE1.ToolBar = 0
oIE1.MenuBar = 0