Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

iexplore.exe *32

Featured Replies

We created an exe from Visual Studio that just opens a browser to a designated web page (.aspx file).  The web page does some processing and then closes.  We added running it from windows task scheduler and it runs fine. However, it leaves processes in the Task Manager called "iexplore.exe *32" for some reason. If I just run the exe by double clicking it it does not leave the "iexplore.exe *32" processes in Task Manager.  It is freaky. Any ideas?

  • Author

Added a separate task job in scheduler that runs command below.

 

TASKKILL /F /IM iexplore.exe

 

Seems to work so far.

  • Author

I would like to do it inside the exe but not sure how to do this.  The exe opens IE to a specific web page.  That web page runs some code to update accounting files from an SQL Server database.  The web page is still running when the exe windows form closes so iexplore.exe is still running.  The web page uses window.close in final code so that web page auto closes when updating is done.  Below is my exe code in case you have any suggestions.

Public Class Form1    Public Sub Main()        Try            Dim webAddress As String = "http://msnt01/BodyShop/Updater.aspx?from=vb"            Dim P As Process = Process.Start(webAddress)            P.WaitForInputIdle()            P.Kill()        Catch        Finally            Application.Exit()        End Try    End Sub    Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load        Main()    End SubEnd Class
  • 3 months later...

I don't have any studio's open in front of me, but sample the code below:

dim proc as ProcessStartInfo("cmd.exe")dim pr as Processpr=Process.Start(proc)pr.StandardInput.WriteLine("taskkill /f /im iexplorer.exe")

Add that between the try/catch. The application will still close afterwards too (at least it should).

Please sign in to comment

You will be able to leave a comment after signing in

Sign In Now

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.