This shows you the differences between two versions of the page.
— |
powershellie [2014/10/25 21:52] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | == Launch and Use Internet Explorer (IE) from Powershell == | ||
+ | <code> | ||
+ | $ie = new-object -com "InternetExplorer.Application" | ||
+ | $ie.navigate("file:///c:/madan/ps1/one.html") | ||
+ | $ie | get-member | ||
+ | |||
+ | </code> | ||
+ | ---- | ||
+ | * [[powershell|Back to Powershell]] |