4500 S Lakeshore Drive Tempe, AZ 85282

4500 E Speedway Blvd Tucson, AZ 85712 

 
December 8, 2009

Exchange 2007 won't receive emails

If you stop receiving emails in Exchange 2007 telnet to your Exchange 2007 server.  Do you see the following error, “452 4.3.1 Insufficient system resources”?  You […]
November 2, 2009

Send a daily html CCR report via Powershell

Create a powershell script to generate the html file Test-ReplicationHealth | ConvertTo-Html -title “BackupReport CCR” -body “Backup status per Storage Group” | Set-Content E:StorageGroupBackupStatus.html note: test-systemhealth […]
November 2, 2009

Configure Managed Folder Mailbox Policy logs

Apply the policy to all of your users Get-Mailbox | Set-Mailbox –ManagedFolderMailboxPolicy ‘Default Managed Folders Policy’ Turn on the log folder set-mailboxserver -identity <server> -FolderLogForManagedFoldersEnabled $true Set […]
October 26, 2009

Creating a recovery storage group and database

Creat a new storage group New-StorageGroup –Server <database server> –LogFolderPath “<Path to your log folder” –Name “Recovery Storage Group” –SystemFolderPath “<path to your database>” –Recovery Creat […]
October 20, 2009

Exchange 2007 CCR useful commands

Move Clustered mailbox server to another server Move-ClusteredMailboxServer -Identity:<CMSName> -TargetMachine:<PassiveNodeName> -MoveComment:<Comment> View Storage group configuration Get-StorageGroup -Server mbx01 | fl View the database configuration Get-PublicFolderDatabase -Identity […]