How to uninstall Windows Mail?

10

3

How do I uninstall "Windows Mail" (not Windows Live Mail).

When I want to use IMAP (or POP), I normally use Windows Live Mail. I have no need for Windows Mail. (Windows Mail, in its old incarnation, used to be called "Outlook Express").

I have looked under Control Panel. I have done Google Search. Have come up with nothing so far.

Hence my question...

Update:

I had already looked under Control Panel → Programs and Features → Add/Remove Windows Components → and Windows Mail does not appear here.

joyjit

Posted 2010-07-08T22:30:03.737

Reputation: 421

"Windows Mail, in its old incarnation, used to be called "Outlook Express" So is WLM, but is more flexible. – Moab – 2010-07-08T23:09:56.807

Answers

13

Windows Mail is a Windows system component and cannot be uninstalled or removed, so Microsoft has not supplied any means for that.

To remove, try renaming WinMail.exe to something else, found in C:\Program Files\Windows Mail. You might first use autoruns to see if it's set to start automatically with the computer.

If all you want is to disable WinMail, see details in the article :
How to Enable or Disable Windows Mail in Vista.

The procedure is to open the Local Group Policy Editor -> Computer Configuration -> Administrative Templates -> Windows Components -> Windows Mail, right-click on "Turn off Windows Mail application" and click on Properties, then select "(dot) Disabled or Not Configured" and click OK.

image

harrymc

Posted 2010-07-08T22:30:03.737

Reputation: 306 093

1you should select "Enable", not "DisableNot-configured" in GPEdit. It's a double negative - "turn off" should be "enabled" to be really "off". If you *enable* this setting, access to the Windows Mail application is *denied*. - quote from the help there – jitbit – 2015-12-22T20:27:38.827

from Microsoft help quote session it said "If you enable this setting, access to the Windows Mail application is denied. If you disable or do not configure this setting, access to the Windows Mail application is allowed." – SUB-HDR – 2019-05-16T10:16:49.877

7

The OP's question was how to remove WinMail from a computer. The other suggestions will disable or only rename the file. If you want WinMail permanently gone from your system, this simple BAT file will do it:

:: Take ownership of the folders
TakeOwn /F "C:\Program Files\Windows Mail" /R /D Y
TakeOwn /F "C:\Program Files (x86)\Windows Mail" /R /D Y

:: Grant full control to Administrators, the user running this, and SYSTEM
ICACLS "C:\Program Files\Windows Mail" /T /Grant:R "Administrators":(OI)(CI)F
ICACLS "C:\Program Files\Windows Mail" /T /Grant:R %UserDomain%\%UserName%:(OI)(CI)F
ICACLS "C:\Program Files\Windows Mail" /T /Grant:R "SYSTEM":(OI)(CI)F
ICACLS "C:\Program Files (x86)\Windows Mail" /T /Grant:R "Administrators":(OI)(CI)F
ICACLS "C:\Program Files (x86)\Windows Mail" /T /Grant:R %UserDomain%\%UserName%:(OI)(CI)F
ICACLS "C:\Program Files (x86)\Windows Mail" /T /Grant:R "SYSTEM":(OI)(CI)F

:: Unhide WinMail.exe
Attrib -S -H "C:\Program Files\Windows Mail\WinMail.exe"
Attrib -S -H "C:\Program Files (x86)\Windows Mail\WinMail.exe"

:: Delete the WinMail folders
RD /S /Q "C:\Program Files\Windows Mail"
RD /S /Q "C:\Program Files (x86)\Windows Mail"

Mako-Wish

Posted 2010-07-08T22:30:03.737

Reputation: 71

3this is the best way I've found to remove windows accessories that cannot be uninstalled. – manit – 2017-03-29T23:31:14.647

1

See If there is an entry in Control Panel> Programs and Features>Add Remove Windows Components, if not, then you can attempt to delete the program folder.

Moab

Posted 2010-07-08T22:30:03.737

Reputation: 54 203

4As I mentioned in my original query "I have looked under Control Panel...". Windows Mail does not appear under "Windows Components". It cannot be uninstalled from there. – joyjit – 2010-07-09T16:52:15.310

3You were not specific as to where in control panel you looked. – Moab – 2010-07-11T01:54:12.447

0

Here is an article on how to install Windows Mail on Windows 7, one could reverse engineer the instructions to remove it from your system.

http://forums.anandtech.com/showthread.php?t=322047

Moab

Posted 2010-07-08T22:30:03.737

Reputation: 54 203

0

After removing Winmail.exe , try creating a directory named "Winmail.exe" in its old location. That way, maybe the OS cannot put the file back because there is a directory there with the same name.

djangofan

Posted 2010-07-08T22:30:03.737

Reputation: 2 459

0

I uninstalled my Windows Mail, but I had to alter ownership and permissions to allow it. You will find the options for this within the "properties" of the Mail folder itself.

EtherealJoe

Posted 2010-07-08T22:30:03.737

Reputation: 1

4Can you expand your answer to explain how to accomplish this? There isn't enough information here to really be useful if the reader doesn't already know the answer. – fixer1234 – 2015-06-16T20:49:44.013