Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 255989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:58:36+00:00 2026-05-11T21:58:36+00:00

I need to run a web application in IE so it at least looks

  • 0

I need to run a web application in IE so it at least looks similar to a stand-alone application. I also need to be able to run multiple instances of this web application at the same time in separate sessions.

To achieve this look I’d like to always launch Internet Explorer 7 in a new process without toolbars/statusbar from a shortcut on the desktop.

I’ve tried a few things. So far the closet I’ve come to it is creating a shortcut to the following vb script,

Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "http://stackoverflow.com"
objExplorer.ToolBar = 0
objExplorer.StatusBar = 0
objExplorer.Width = 1024
objExplorer.Height = 768
objExplorer.Left = 0
objExplorer.Top = 0
objExplorer.Visible = 1

This looks exactly like I want it to. However, if you double-click the shortcut again it does open a new window but within the same process (i.e. there is only one iexplore.exe process in the Windows Task Manager). Since the two instance are within the same process they’re sharing the same session. So if you’re logged in to one instance of the application then you’re logged in to the other instance of the application, which is no good for me.

I also tried,

"Program Files\Internet Explorer\iexplore.exe" http://stackoverflow.com

which always launches a new process but you can’t remove just the toolbars/statusbar. Kiosk mode (the “-k” parameter) is no good to me as I need it to appear in a window.

Can anyone tell how to always launch Internet Explorer 7 in a new process without toolbars/statusbar from a shortcut on the desktop?

I’m open to any kind of technology for the solution.

Thanks,
Everett

  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T21:58:36+00:00Added an answer on May 11, 2026 at 9:58 pm

    None of the other answers worked out for me so here is a vb script I cobbled together from various sources (I’m not a vb scripter).

    On Error Resume Next
    
    AppURL = "http://www.stackoverflow.com"
    AppToRun = "iexplore about:blank"
    AboutBlankTitle = "Blank Page"
    LoadingMessage = "Loading stackoverflow..."
    ErrorMessage = "An error occurred while loading stackoverflow.  Please close the Internet Explorer with Blank Page and try again.  If the problem continues please contact IT."
    EmptyTitle = ""
    
    'Launch Internet Explorer in a separate process as a minimized window so we don't see the toolbars disappearing
    dim WshShell
    set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.Run AppToRun, 6
    
    dim objShell
    dim objShellWindows
    
    set objShell = CreateObject("Shell.Application")
    set objShellWindows = objShell.Windows
    
    dim ieStarted
    ieStarted = false
    
    dim ieError
    ieError = false
    
    dim seconds
    seconds = 0
    
    while (not ieStarted) and (not ieError) and (seconds < 30)
    
        if (not objShellWindows is nothing) then
            dim objIE
            dim IE
    
            'For each IE object
            for each objIE in objShellWindows
    
                if (not objIE is nothing) then
    
                    if isObject(objIE.Document) then
                        set IE = objIE.Document
    
                        'For each IE object that isn't an activex control
                        if VarType(IE) = 8 then
    
                            if IE.title = EmptyTitle then
                                if Err.Number = 0 then
                                    IE.Write LoadingMessage
    
                                    objIE.ToolBar = 0
                                    objIE.StatusBar = 1
                                    objIE.Navigate2 AppURL
    
                                    ieStarted = true
                                else
                                    'To see the full error comment out On Error Resume Next on line 1
                                    MsgBox ErrorMessage
                                    Err.Clear
    
                                    ieError = true
    
                                    Exit For
                                end if
                            end if
                        end if
                    end if
                end if
    
                set IE = nothing
                set objIE = nothing
            Next
        end if
    
        WScript.sleep 1000
        seconds = seconds + 1
    wend
    
    set objShellWindows = nothing
    set objShell = nothing
    
    'Activate the IE window and restore it
    success = WshShell.AppActivate(AboutBlankTitle)
    
    if success then 
        WshShell.sendkeys "% r"  'restore 
    end if
    

    I’m open to any improvements or suggestions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What I need to do is create a web application that can run inside
I need to run capybara-webkit inside a Rails application to enable headless web browsing
UPDATED 2010-11-25 A legacy stand-alone application (A1) is being re-created as a web application
I have working in asp.net web application. Here I need to run JavaScript before
I need to run some classic ASP locally before deployment to a legacy web
I need to run a script every night that connects to a Web Service
I'm deploying a web site and I need to run large TSQL scripts contained
I have a web app (MVC) where I need some automatic service to run
I need to run an external application from within my Java code. I can
I'm currently developing a web application and have run into a little problem. I'm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.