Microsoft is going to make the migration of Microsoft SCCM 2007 to 2012 a lot eassier! Watch the following movie and enjoy 😉
[youtubegallery]
[/youtubegallery]
A WORLD OF BITS AND BYTES…
Microsoft is going to make the migration of Microsoft SCCM 2007 to 2012 a lot eassier! Watch the following movie and enjoy 😉
[youtubegallery]
[/youtubegallery]
The Exchange CXP team released Update Rollup 6 for Exchange Server 2010 SP1 to the Download Center.
This update contains a number of customer-reported and internally found issues since the release of SP1. See ‘KB 2608646: Description of Update Rollup 6 for Exchange Server 2010 Service Pack 1′ for more details.
This update contains a number of customer reported and internally found issues since the release of RU5.
The most Important Fixes:
Other Fixes:
General Notes
An issue with management of RBAC roles when RU6 is partially deployed in the organization: Due to changes shipped in this update, certain warnings can be displayed when managing RBAC roles, if RU6 is not yet deployed to all servers in the organization. Please see the following KB article for more information:
Managing RBAC roles might display warnings or errors if Exchange 2010 SP1 RU6 is partially deployed in the organization
http://support.microsoft.com/kb/2638351
Note for Forefront users: For those of you running Forefront Protection for Exchange, before installing the update, stop all Forefront services.
Today I’ve to create a temporary solution to backup the Exchange 2010 environment. There’s one simple solution to export all the mailboxes to PST, this is not a prevered solution for a production environment, but it works 🙂 I’ve used the following powershell commando’s.
1.) New-RoleGroup “Mailbox Import Export Group” -Roles “Mailbox Import Export”
2.) Add-RoleGroupMember “Mailbox Import Export Group” -Member “Administrator”
3.) New-MailboxExportRequest -Mailbox mswi -FilePath \\SRV-EXC01\Z$\Export_PST\mswi.PST
When you want to export all the mailboxes in your Exchange environment, you can use the following powershell command.
foreach ($mbx in (Get-Mailbox)) { New-MailboxExportRequest -Mailbox $mbx -FilePath “\\win2008srv01\c$\PST\$($mbx.Alias).pst” }
Today I had to perform a migration from Microsoft Exchange 2003 to 2010. The new “Move Mailbox” option is replaced with the “Local Move Request“. By default there’s a maximum of two threads at one time…so when you’ve to migrate 1000 users, you’ll have to wait a long time!
You can edit the maximum of two threads within the following file; MSExchangeMailboxReplication.exe.config. This file is located in the installation directory of Microsoft Exchange. In my environment it is D:\Program Files\Microsoft\Exchange Server\V14\Bin
Change the following settings:
The default value (as of SP1, version 218.15, at least) seems to be 2. Change the 2 to a 5, or an 8, or whatever you’d like it to be.
Save the file, and restart the Microsoft Exchange Mailbox Replication service. Now you can perform 5 move requests at one time!! Cool… 😉