我需要在Windows 8应用模式而非桌面模式下由批处理文件运行的VBScript打开IE页面。这样用户就可以在平板电脑上使用IE和桌面之间的滑动功能。有关如何做到这一点的任何建议吗?
这是一些代码,它将打开IE并转到URL:
public class MyName {
private String firstname;
private String lastname;
/**
*
* @return the Json string
*/
public final String toJsonString() {
return (new Gson()).toJson(this);
}
@Override
public final String toString() {
return toJsonString();
}
}
我尝试将默认浏览器和设置设置为Metro模式,但仍然以桌面模式打开。
答案 0 :(得分:0)
您可以阅读IE Command-Line Options,然后就可以使用:
Set oWSH = CreateObject("WScript.Shell")
oWSH.Run "iexplore.exe -k http://www.myweb.com"