Internet Explorer 6 on Linux Cleanup Script

Written by James McDonald

July 3, 2009

This is a quick and dirty hack I use to kill the zombie processes left after running an ies4linux install of Internet Explorer 6.

#!/bin/sh
ps -ef | grep wineserver | awk '{ print $2 }' | xargs kill -9
ps -ef | grep explorer.exe | awk '{ print $2 }' | xargs kill -9 
ps -ef | grep ie6 | awk '{ print $2 }'| xargs kill -9

Unfortunately this script does try to kill some of it’s own processes but not before doing the job.

If you can think of a better way I’d be interested in hearing it.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Squarespace Image Export

To gain continued access to your Squarespace website images after cancelling your subscription you have several...

MySQL 8.x GRANT ALL STATEMENT

-- CREATE CREATE USER 'tgnrestoreuser'@'localhost' IDENTIFIED BY 'AppleSauceLoveBird2024'; GRANT ALL PRIVILEGES ON...

Exetel Opt-Out of CGNAT

If your port forwards and inbound and/or outbound site-to-site VPN's have failed when switching to Exetel due to their...