未分類

PowerShell - Internext Explorer を起動する

Internext Explorer を起動する方法について、サンプルコードを用いて説明します。

IE を指定した大きさと位置で起動

同時にウェブサイトも開きます。

$IE = New-Object -ComObject "InternetExplorer.Application"
$IE.Width = 1024
$IE.Height = 768
$IE.Top = 100
$IE.Left = 150
$IE.Navigate("http://itnandemolab.blog70.fc2.com")
$IE.Visible = $true

-未分類