preben Posted June 19, 2006 Posted June 19, 2006 How can I remove Outlook Express through .reg files, or any form of scripting?/Preben
T D Posted June 19, 2006 Posted June 19, 2006 You can use nlite or google. Here is a good tutorial. If you remove outlook express after office outlook installation, you can use the office outlook.http://www.activewin.com/tips/tips/microso...dvanced/8.shtml
T D Posted June 19, 2006 Posted June 19, 2006 (edited) In theory, this should work, I tested it remove outlook express.cmd @echo off@clsCMDOW @ /HIDreg delete "HKEY_LOCAL_MACHINE\Software\Microsoft\Outlook Express" /va /f reg delete "HKEY_LOCAL_MACHINE\Software\Microsoft\WAB" /va /freg delete "HKEY_CURRENT_USER\Identities" /va /freg delete "HKEY_CURRENT_USER\Software\Microsoft\Outlook Express" /va /freg delete "HKEY_CURRENT_USER\Software\Microsoft\WAB" /va /freg delete "HKEY_LOCAL_MACHINE \Software\Microsoft\Active Setup\Installed Components\{44BBA840-CC51-11CF-AAFA-00AA00B6015C}" /va /freg delete "HKEY_LOCAL_MACHINE \Software\Microsoft\Active Setup\Installed Components\{7790769C-0471-11D2-AF11-00C04FA35D02}" /va /fregsvr32 /s /u Inetcomm.dllregsvr32 /s /u Msoeacct.dllregsvr32 /s /u Msoert2.dllregsvr32 /s /u Msoe.dllregsvr32 /s /u Msoeres.dllregsvr32 /s /u Oeimport.dllregsvr32 /s /u Oemiglib.dllregsvr32 /s /u Wabfind.dllregsvr32 /s /u Wabimp.dllregsvr32 /s /u Csapi3t1.dllregsvr32 /s /u Directdb.dllregsvr32 /s /u Wab32.dllregsvr32 /s /u Wab32res.dllRD /S /Q "%programfiles%\Outlook Express"RD /S /Q "%programfiles%\Common Files\Microsoft Shared\Stationery"RD /S /Q "%allusersprofile%\Local Settings\Application Data\Identities"RD /S /Q "%userprofile%\Local Settings\Application Data\Identities"RD /S /Q "%allusersprofile%\Application Data\Identities"RD /S /Q "%userprofile%\Application Data\Identities"RD /S /Q "%allusersprofile%\Local Settings\Application Data\Address Book"RD /S /Q "%userprofile%\Local Settings\Application Data\Address Book"RD /S /Q "%allusersprofile%\Application Data\Address Book"RD /S /Q "%userprofile%\Application Data\Address Book"Some files are in use when you try to mod or delete them but if it's in an unattended setup, it should work. Edited June 19, 2006 by T D
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now