Skip to main content

Outlook 2007 Default Seettings

 ·  Exit any open Outlook 2007 windows.
·  2
Find the "OUTCMD.DAT" file: Open the Windows Start menu, click "Computer," double-click the C drive, open the "Users" folder, then select your Windows login account folder. Double-click "AppData," open "Roaming," select the "Microsoft" folder, then go into the "Outlook" folder. The "OUTCMD.DAT" file is located in the "Outlook" folder.
·  3
Give the "OUTCMD.DAT" file a different name, such as "OLD.DAT."
·  4
Restart Outlook 2007. By default, when Outlook 2007 notices the absence of the "OUTCMD.DAT" file, it creates a new one from scratch, restoring the program to its default settings.

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...