![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | loading an html string into an IE window if you haev HTML in a string, how can we put that into an IE window without having to save it temporarily to a file? Karl |
My System Specs![]() |
| | #2 (permalink) |
| | RE: loading an html string into an IE window You may play with this script/examples: ----- 8< ----- ## Out-IE.ps1 ## Display HTML input in IE (pipelined or defined by -html ) param ( [string[]]$html) end { $ie = New-object -COM InternetExplorer.Application $ie.navigate('about:blank') $ie.Resizable=$True $ie.StatusBar=$True $ie.AddressBar=$False $ie.MenuBar=$False $ie.Toolbar=$False if ($html) { $ie.document.body.innerHTML = $html } else { $ie.document.body.innerHTML = $input } $ie.Visible = $True } ----- 8< ----- Examples: ls | ConvertTo-Html | Out-IE Out-IE @" <html><body><pre> Hello <b>$($env:username)</b>! Today is $(get-date) </pre></body></html> "@ -- Thanks, Roman |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Opening an hidden Window with window.open (HTML) | VB Script | |||
| IE 8 New Window/Tab not loading | Network & Sharing | |||
| Error message when clicking on links and extra pop up html window. | Vista mail | |||
| working on html objects using HTML DOM, VBscript | VB Script | |||
| HTML String to Word with Header and Footer (ASP.NET and VB.NET) | .NET General | |||