#cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.12.1 Author: Ben Zipperer Sugarloaf Tech, Inc. Released to the public domain Script Function: Clear Outlook 2003 temporary folder - red X problem #ce ---------------------------------------------------------------------------- $tempfolder = RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Security","OutlookSecureTempFolder") If ($tempfolder=="") Then Exit If FileExists($tempfolder) Then $ignore = DirRemove($tempfolder,1) $ignore = DirCreate($tempfolder) EndIf Exit