2014-02-11 11 views
0

我有显示器,我需要8个特定的网站,以使用批处理文件或工具自动将每个网站上最大化。使用Windows Server 2008 R2和IE11。有任何想法吗?我看过并找到一些例子,但似乎没有任何工作。8个监视器。需要在每台显示器上自动打开特定网页的批处理文件

感谢

编辑

当前批次看起来像这样

start iexplore http://google.com 
start iexplore http://google.com 
start iexplore http://google.com 
start iexplore http://google.com 
start iexplore http://google.com 

,但我需要他们AUTOP开放的全屏蔽

回答

1

DIFF显示器你将不得不使用JavaScript来做到这一点我认为。

此类型在URL字段:

javascript:resizeTo(1980,1080);moveTo(0,0) 

javascript:resizeTo(1980,1080);moveTo(1981,0) 

etc... 

这不会在Chrome中工作。但是,它将在Internet Explorer中运行。

+0

所以究竟将这项工作? 开始iexplore http://google.com javascript:resizeTo(1980,1080); moveTo(0,0); – Narzard

+0

这真的有用吗? - 请参阅http://support.microsoft.com/kb/938306 – cup

相关问题