如何在Powershell中打开后台URL

时间:2017-05-24 10:49:59

标签: windows powershell

我正在尝试在后台打开一个工作正常的网址:

$ie = new-object -com "InternetExplorer.Application"
$ie.navigate("www.bing.com")

但是当我将服务器url设置为其中任何一个时,IE窗口就会出现。

$ie.visible = $false
$ie.navigate("192.168.167.132\test.html")
$ie.navigate("http://192.168.167.132\test.html")

1 个答案:

答案 0 :(得分:1)

请看这里的帖子: Mentions a .Visible parameter

在这里,克里斯写道:

  

不确定。您可以通过PowerShell和IE对象执行此操作。只是不要   让它可见:

Poll.aggregate({ 
            $group : {
                _id : { month: { $month: "$votes.votedOn" }, day: { $dayOfMonth: "$votes.votedOn" }, year: { $year: "$votes.votedOn" } }
            } 
        }, function(err, d) {
            if (err) {
                throw err;
            }
            console.log(JSON.stringify(d, null, 4));
        }
    );
  

进行故障排除,请使用:

> $ie = new-object -com "InternetExplorer.Application"
> $ie.navigate("http://launchurl") If you ever needed to see the window

这样做

> $ie.visible = $true