Powershell/CMD command to open IE10 in compatibility mode

3

1

I am looking for a powershell command to open Internet Explorer 10 in compatibility mode like

C:\Program files(x86)\Internet Explorer\iexplore.exe www.abc.com opens www.abc.com in IE10.

I want to open the same site in IE8, IE9 (compatibility modes of IE10) as well through powershell. Is there any IE parameter/hack to accomplish this ?

abhi120

Posted 2013-12-17T09:19:00.253

Reputation: 143

What happens when you try this? – soandos – 2013-12-17T09:36:37.700

are you having IE10 specific issues of specific pages that you are trying to test the compatibility of? – txtechhelp – 2013-12-17T09:38:57.237

@soandos, It opens abc.com in IE10 – abhi120 – 2013-12-17T10:03:27.897

@txtechhelp, i have made some web pages and i just want to see how they looks in IE8, IE9 and i want to do it from powrshell – abhi120 – 2013-12-17T10:04:59.920

Answers

0

Take a look at this: http://msdn.microsoft.com/en-us/library/windows/desktop/ff966512%28v=vs.85%29.aspx

It is MS's compatibility toolkit. Sounds like what you might need as there is not a direct way to enable compatibility mode from the command line (which is what you would need to do if running from a command window or powershell).

Take a look at this answer too as it provides more detailed info on what it sounds like you're trying to accomplish.

Hope that helps.

txtechhelp

Posted 2013-12-17T09:19:00.253

Reputation: 3 317