Hi Team,
Our current requirement directs me to setup an IE with lockdown mode. I have to publish a link in Citrix for few users , however, with complete restrictions. I can either publish it with -K switch or run a vb script.
I decide to go for a VB script as i can custoime the size of the IE. However, on the published link (http://xyz.com) we have a hyperlink which users can use to open a new browser with all functionalites.
Either I can request the web desginer to remove that hyperlink from the website itself, Or , is there a way by which I can redirect all hyperlinks to open same Link with lockdown mode ?
Below is my script
Set oIE1 = WScript.CreateObject ("InternetExplorer.Application")
oIE1.Navigate = url of the site
oIE1.Visible = 1
oIE1.AddressBar = 0
oIE1.StatusBar = 0
oIE1.ToolBar = 0
oIE1.MenuBar = 0