ContributionsMost RecentMost LikesSolutionsRe: How to pass IPv6 address in Browsers.Item().Run()? Tried as suggested, but still seeing the same error. Basically when it encounters a colon (:) in IPv6 address format, it throws the error. Tried to replace : with chr(58), but no luck. Re: How to pass IPv6 address in Browsers.Item().Run()? Here, I just the mentioned the routine which I am using. And of course, I have mentioned the browser type in my script :) var natIP = "x:x:x:x:x:x:x:x"; natIP = "[" + natIP + "]"; // IPv6 address needs to be enclosed within [] var loginURLStr = "https://" + natIP + ":5480"; Browsers.Item(btIExplorer).Run(loginURLStr); The above snippet works fine for an IPv4 address, but throws error message for an IPv6 address. Regards, Mohammed Firdosh Nasim. How to pass IPv6 address in Browsers.Item().Run()? Hi, I am trying to pass a IPv6 address as "https://[<IPv6_addr>]:<port_num>" to Browsers.Item().Run(). Getting an error as "The parameter in incorrect". What is the correct way to pass an IPv6 address. Regards,