$navOpenInBackgroundTab = 0x1000;
$ie = new-object -com InternetExplorer.Application
$ie.Navigate2("http://blogs.msdn.com");
$ie.Navigate2("http://www.baidu.com",$navOpenInBackgroundTab);
$ie.Navigate2("http://www.google.com",$navOpenInBackgroundTab);
$ie.Navigate2("http://www.yahoo.com",$navOpenInBackgroundTab);
$ie.Visible = $true

 

延伸阅读:使用Powershell模拟IE的行为

http://www.6a8a.com/2011/PHP_0611/2359.html

相关文章:

  • 2022-01-03
  • 2021-11-02
  • 2021-05-26
  • 2021-06-13
  • 2022-02-11
  • 2021-12-27
  • 2022-01-27
  • 2021-09-15
猜你喜欢
  • 2022-03-03
  • 2021-07-02
  • 2021-10-08
  • 2021-11-17
  • 2022-01-15
  • 2021-12-16
相关资源
相似解决方案