You can use this procedure to add the Log on as a service right to an account on your computer.
To open Local Security Policy, click Start, point to Control Panel, point to Administrative Tools, and then double-click Local Security Policy.
In the console tree,...
There are a number of reasons why you may need to find and remove inactive computers from active directory. Test computers and servers that were removed without disconnecting from the domain, or in my case, a computer fleet upgrade. New computers were brought in...
In exchange 2010 SP1, users are not receiveing quota warning messages when they are beyond the Issue Warning threshold.
Microsoft have an article relating to this issue.
Users do not receive quota warning messages after you apply Service Pack 1 for Exchange Server...
Run the following powershell script to grant a user or group full access to a mailbox.
Add-MailboxPermission -Identity '' -User '' -AccessRights 'FullAccess'
In Exchange 2010, when you create a room or resource mailbox, the Resource Policy tab gives you the option to Allow scheduling only during business hours. But what is business hours?
The default business hours is from 8:00 am until 5:00 pm. You can check this by...
This is particularly handy if you want to reset your outlook profile, but the security policy on the computer does not allow you to launch the Mail control panel
HKEY_USERS\\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles
You will often find your database log file (.ldf) growing to a very large size, often larger than the databasie file (.mdf) itself.
Log files should shrink after a full backup, but this isnt always the case. Below is a quick command you can run to empty a database...
This article explains how to configure your Windows Server 2008 R2 Active Directory Primary Domain Controller to syncronise time with an external time source.
Note: In an active directory, all member computers will sync time with the PDC, so you only need to setup...
After you delete a user from Acrive directory or Exchagne their mailbox is kept in the Exchange database for a number of days until it is automatiaccly removed. As defined in the “Limits” section of the database properties.
If you want to force the...
If you have defined custom functions in a .ps1 file, to register them in Exchange Command Shell all you need to do is run the following command:
[ps] c:\Exchange> . .\.ps1
Then you can call your functions from the PowerShell command line.