The Accpac Guy
Odds and ends regarding the Sage ERP Accpac (Sage 300) system and other IT stuff I find useful or interesting.
Useful Exchange 2010 / 2013 Powershell commands
New-MoveRequest -Identity ‘user@domain’ -TargetDatabase “Mailbox Database” -WhatIf
Remove the -WhatIf to move the mailbox
Get-Mailbox -Database “Old Mailbox Database” | New-MoveRequest -TargetDatabase “New Mailbox Database”
Remove all move requests:
get-moverequest | remove-moverequest -confirm:$false
List open move requests:
Get-MoveRequest -TargetDatabase “Mailbox Database”
Get-MoveRequest –identity ‘user@domain’
Get statistics for database:
Get-MailboxStatistics -database “Mailbox database”
Limiting Exchange 2010 Database Cache
I recently installed a Small Business Server 2011 at a client with some kickass hardware. Imagine our surprise when we tried to actually run anything on the server and it CRAWLED, I mean seriously slow. Even to the point of opening files via the shared folders from a workstation was slow. It was a bit disturbing to say the least. I found the problem to be that Exchange 2010 was using up all available memory, as in a 12Gb store.exe process. I did some googling and found that this behaviour is actually by design. Now that’s great if it’s a dedicated Exchange server. However, when Microsoft have specifically designed SBS to run everything on one box and will only allow you to run it on one box according to the license, it just doesn’t make sense! (Thankfully with the Premium Edition they do allow you a seperate free licence to run SQL on a seperate box). I came across a workaround to the problem on Continue reading