
Quote: Originally Posted by
EKMantis
Hey, I made a batch file of the fix on your page since I plan to use it on a lot of computers. I have attached the zip with the batch files (and other necessary components) if you wanted to add them to your page for people that want an easy fix. Pretty self-explanatory. Thanks for the great fix!
*EDIT: All you need to run is "winmail32.bat" for a 32bit installation, or "winmail64.bat" for a 64bit installation. The rest of the files are just there for the batch file to use.
Hey EKMantis, nice job with this Easy One Click .bat installation.
I had WinMail installed when this thread first came out in the begining and tested it, loved the excitment about it, and it worked well, but so many times changing computers and or installing it for others, this .bat just makes it so darn easier going forward - a no brainer. click click done, quickly set a few options to suit ones taste, server info, and was ready to go.
I like how you used the subinacl.exe to set permissions, you covered all bases, all in all nice job with your bat code! I think if the powers that be approve, your
ENABLE WINDOWS MAIL.zip download should be added to the first page as an alternative easy one-click install for steps 1 thru 4 including footnotes. ...of course to transfer/import Contacts, Accounts, Emails, etc, from a previous installation that will have to all be done manually following tututorial steps 5 & 6, there's no way around that.
Code:
regedit /s winmailedit.reg
attrib -s -h "%ProgramFiles%\Windows Mail\WinMail.exe"
subinacl /noverbose /file "C:\Program Files\Windows Mail\msoe.dll" /setowner=Everyone
subinacl /noverbose /file "C:\Program Files\Windows Mail\msoe.dll" /grant=Everyone=f
ren "C:\Program Files\Windows Mail\msoe.dll" "msoe.dll.old"
xcopy "msoe32.dll" "C:\Program Files\Windows Mail" /c /h /e /v /y /d /k
ren "C:\Program Files\Windows Mail\msoe32.dll" "msoe.dll"
pause
.