• Main
  • Blog
  • Who We Are
    • Jeremy Anderson
    • Amy Babinchak
    • Philip Elder
    • Cliff Galiher
    • Chris Matthews
    • Eriq Neale
    • Edwin Sarmiento
    • David Shackelford
  • HelpDesk
  • FAQ
  • Datto
  • SMBKitchen Project
    • SMBKitchen Crew

Archive for February 2011

Feb
23

Determining Where All Of Those Disk Writes are Coming From

by amy

Post to Twitter Post to Facebook Post to StumbleUpon

I did a quick performance study on an SBS 2003 server and found that Disk Writes were causing a bottleneck for the server. If you’d like to know how I determined that, see the blog post Discovering Disk I/O is a Problem at http://www.thirdtier.net/blog.

This procedure is appropriate for any Windows server, not just SBS 2003.

We’re lucky in SBS 2003 in that there is already a populated Group Policy that enables Auditing because it’s Object Access Auditing that we’re going to use to determine whether or not the disk writes happening on our server are from a legitimate source or not. If you don’t have an Auditing Group Policy I would suggest creating one. It’s nice to be able to set the policy for all servers in your network when you’re doing a bottleneck study like this is one. In our case there were three servers on the network and we investigated all of them. This blog post will focus on the SBS 2003 server.

The first step was to edit the Small Business Server Auditing Policy. I changed the Audit Object Access from Not Defined to Success. Then executed a gpupdate /force to push out the updated policy to my servers. Setting this group policy will allow me to choose which folders to audit on my server.

image

The second step is to configure my security log. The audit policy results will post events into that log file.

In Event Viewer,  properties of the Security Log set the Maximum log size to a large enough number to accommodate the logs files for the period that you want to capture. This log file is likely to be big so I would make it at least double the default, if not more. Also for the duration of this study you will want to make sure that the log file doesn’t get overwritten and instead choose Do not overwrite events. Remember to change your settings back when you are finished reviewing the log files.

image

The Third Step is to turn on Auditing for the folders that you want to record. In my case, we are interested in Disk Writes. So the folder I am going to target are places where applications and users store their data.

Choose a data folder and view its properties. Select the Security tab and press the Advanced button. In the Advanced Security Settings move to the Auditing tab. Press the Add button and select the events that you’d like to monitor. I chose Traverse Folder/Execute File, List Folder/Read Data, Create Files/Write Data and Create Folders/Append Data. Be sure to choose as few as required to get the information you need. The log files in auditing operations can become huge if you’re not careful. Apply your settings and repeat this for each folder that you want to audit.

image

Step four is to wait. You now wait for the file access to occur and be logged to the security log.

Step five is to review the security log to determine where the disk write are coming from. This is the hard part. It’s a manual sift through the audit logs to determine the ratio and frequency of writes from all of the various sources. I thought I was looking for a single source of huge number of disk writes to the server and I did indeed find one.

In my case it was the time clock software, receiving data from the physical and software time clocks through IIS, writing that data to its database and updating its reporting engine. It’s a very busy application bustling with data moving from here to there and back again. We found the cause our disk bottleneck. Now to make a recommendation on what to do about it. 

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN

WordPress Tags: Disk,performance,server,bottleneck,Problem,Windows,Policy,Object,servers,Audit,folders,events,Event,Viewer,Maximum,size,settings,Third,users,data,Execute,File,List,Read,Create,Files,Write,Append,database

0 Categories : Amy Babinchak, Performance
Feb
22

Discovering Disk I/O is a Problem

by amy

Post to Twitter Post to Facebook Post to StumbleUpon

We all get those calls from clients complaining that the network is slow at certain times of the day occasionally. We usually start by looking for errors or checking out the computer of the people complaining the most. Perhaps we even look at the applications they are running as a possible source of the problem. But sometimes, it really is the “network” that is slow, at least as users experience the network. The problem is actually that the server is bogged down and having trouble keeping up with the demands placed upon it.

Today’s modern servers are usually loaded with CPU’s and RAM. So a quick look at Windows Task Manager shows that the server isn’t busy at all. CPU and Page File use are not stressed, considering this server performs many functions in the network.

image

This particular server is about 5 years old. The business has grown over that time and applications have been added to the server over the years. I’m suspecting that while CPU and RAM have kept up with the company, that the disks have not. A performance study on disk performance is in order.

The subject server is an SBS 2003 server running on hardware that is about 5 years old. There are 4 hard drives configured in a RAID5. There is a RAID controller card installed in the server. This procedure is not SBS specific, it will work on any server where you suspect Disk performance problems. In addition to the SBS software suite this server also houses User Shared Folders and a Time Clock application. The subject company is in the manufacturing industry and they have about 80 employees and 45 computers.

The first thing that we need to do is setup performance monitoring to record the disk performance covering the period when users most often report that the server is slow.

To record potential Disk I/O issues I’m going to setup a Counter Log using these items:

  • Physical Disk: Avg. Disk Queue Length  (Less than 2)
  • Physical Disk: % Disk Read Time
  • Physical Disk: % Disk Write Time
  • Physical Disk: % Disk Time (under 35)

I know from reading Microsoft’s information on Disk I/O testing in TechNet that a well running server should perform at certain levels for each of these. Those values are noted after the name of each counter above.

To Create and Schedule a Disk Counter Log

  1. Open Performance Monitor
  2. Expand Performance Logs and Alerts
  3. Right click on Counter Logs and Choose New
  4. Type a Name for the log file you are about to create and a location in which to save it
  5. Add the suggested counters shown in the list above
  6. Schedule the task to run for several hours covering the period when users report slowness

image

Let the task run for the period you specified then return to view the results.

Here’s snippet of what my results looked like.

image

I find the graph difficult to read, so I prefer to view a text report instead.

image

Now to do a bit of calculation. In order to get an accurate Ave Disk Queue length I need to divide with by the number of disks, which in the case of this server is 4.

Comparing our results with the specifications, we can see that our Ave Disk Queue Length is within tolerance, the Disk Read Time is somewhat over but our Disk Write Time is through the roof! We have a disk bottleneck.

What you decide to do with this information is entirely up to you. What I did was get curious to find out what was writing to my disks all the time. Is this legitimate business use of the server? To see the answer to that question and learn one way to determine where those disk writes of coming from see the blog post Determining Where All Of Those Disk Writes of Coming From. It will be posted soon to http://www.thirdtier.net/blog

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN

 

WordPress Tags: Disk,computer,server,servers,Windows,Task,performance,RAID,User,Time,Clock,computers,Counter,Queue,Read,Write,Microsoft,TechNet,Monitor,Logs,Alerts,bottleneck,Writes,blog

1 Categories : Amy Babinchak, Performance
Feb
21

Eriq Neale Appearing on Talk TechNet February 25, 2011

by Third Tier

Post to Twitter Post to Facebook Post to StumbleUpon

Third Tier co-founder Eriq Neale will be appearing on Talk TechNet live this coming Friday, February 25, 2011. This is a LIVE event where you can call in and ask questions via phone, or connect using Live Meeting and submit questions through that interface during the hour. Based on previous episodes, this promises to be an entertaining and educational hour.

https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032476777&Culture=en-US

TechNet Webcast: Talk TechNet with Keith Combs and Matt Hester – Episode 10: Eriq Neale on Small Business Server (Level 200)

Event ID: 1032476334

Language(s): English.

Product(s): Windows Small Business Server.

Audience(s): IT Decision Maker, IT Generalist.

Event Overview

Talk TechNet is all about discussing topics and trends in the world of IT Professionals. In this show we’ll have guest Eriq Neale. Eriq is a Microsoft Small Business Server (SBS) MVP six years running. Eriq is a native Texan, founder and owner of EON Consulting. I’m sure you’ll recognize his name as lead author for the books Microsoft Small Business Server Unleashed (both 2003 and 2008). Call in and join us for what promises to be a lively 60 minute session. Get some burning questions answered.

1 Categories : Announcement, Eriq Neale, SBS 2011
Feb
19

How to set an NTP time server in Windows 2008 (SBS 2008 and SBS 2011)

by amy

Post to Twitter Post to Facebook Post to StumbleUpon

Having a reliable external time server for your domain controller to sync with is important. By default some Windows servers are now configured to sync with the NTP server windows.time.com. My personal experience and that of some of my colleagues is that the windows time service is not the most reliable choice for an NTP server.

In days gone by, I used to instead choose tick or tock, the USA Navy atomic clocks, as my servers of choice but they changed their support policy and were actively discouraging individual companies from using their time servers. Instead they are intended to provide sync services to other time servers. My search for a reliable time source found pool.ntp.org. As the name implies ntp.org is the home of the Network Time Protocol open source project. Members  work together to provide a public pool of time servers for use by individuals and businesses. Because the servers operate in a large network of pooled resources the time servers are highly redundant and reliable.

There are several pools of NTP servers for you to choose from based on what part of the world your server is located. You are not required to use the NTP servers pooled in your region, you could in fact choose the whole world by using pool.ntp,org as your specified time server. But ntp.org would appreciate it if you selected your region from the list in the link. http://support.ntp.org/bin/view/Servers/NTPPoolServers  Clicking through you’ll see that in North America, there’s us.pool.ntp.org, ca.pool.ntp.org, mx.pool.ntp.org and so on with 609 active servers in the pool. In Europe there’s a pool for every Country as well with 1386 servers total.

Here’s how to change your time server from what ever it is now to another NTP server. I’m going to use us.pool.ntp.org in my example.

To check the status of your current time server settings

In an elevated command prompt type: w32tm /query /status

The result will look something like this. Notice that in this example, no NTP server has been specified for this server so it is using it’s CMOS clock as a time source. This explains why many servers experience drifting time. As we know the CMOS batteries don’t last forever.

image

To set an NTP server

In an elevated command prompt type: w32tm /config /manualpeerlist:us.pool.ntp.org

Of course you will enter the name of the pool that you will be using after the : in the command above. Be sure not to leave a space after the :

After entering this command you will get confirmation as shown.

image

You now need to restart the windows time service for your change to take effect.

Once that is done you can check your work by executing the /status command again.

image

That’s the basics of how to change your time server from one source to another. The windows time service has much more to offer and tweak. TechNet has an excellent article on all of the settings available. http://technet.microsoft.com/en-us/library/cc773263(WS.10).aspx

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN

 

WordPress Tags: server,Windows,domain,controller,servers,clocks,Network,Time,Protocol,region,NTPPoolServers,North,America,Europe,Country,CMOS,clock,batteries,TechNet

2 Categories : Amy Babinchak, SBS 2008, SBS 2011, Windows 2008
Feb
18

We’ve got Forums!

by amy

Post to Twitter Post to Facebook Post to StumbleUpon

Third Tier is pleased to introduce forums.

We’re going to kick off the forum experience by creating a topic for each webinar that we present. Using the forum you will be able to interact with other listeners of the webinar and ask questions of the presenter of that webinar. So if you think of question long after the Q&A session is over, the forum offers you another opportunity to get your questions answered.

The forum is found at http://www.thirdtier.net/forum

Once you have created an ID on the forum you will have access to a user control panel. This is not only an opportunity for you to set a signature and tell us a bit about yourself but you can also setup Buddy Lists and review the threads you’ve subscribed to all in one place. 

image

So please help us get the forums off the ground and register your ID today. http://www.thirdtier.net/forum

—–

Who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN

 

WordPress Tags: Forums,Third,Tier,forum,Buddy,Lists,webinar,thirdtier

0 Categories : Announcement, Forum
Feb
17

Q&A from the February 2011 Third Thursday Webinar – Configuring SBS 2011

by Third Tier

Post to Twitter Post to Facebook Post to StumbleUpon

The following is the Q&A from the February 2011 Third Thursday webinar on Configuring SBS 2011 Standard. If you didn’t get a chance to ask your question or you have a question after listening to the recording of the webinar, head on over to our Forum site (https://www.thirdtier.net/forum) and post your questions in the Third Tier Info / Webinars area!

Question: If you click on the Status column first, and then in the Startup Column, any services that are not running will be at the top of the list. Saves you from scrolling down the lsit.

Answer: good tip!

Question: for later: certificates: do I order a certicate for remote.corbus.nl or corbus.nl?

Answer: you’ll likely get the cert for remote.corbus.nl, unless you are wanting a wildcard certificate for the entire domain.

Question: Public share is not moved by the Wizards – must be done manually

Answer: That’s correct.

Question: Does the SBS2011 built-in backup support Exchange-aware backup? SBS2008 did not if I’m not mistaken…

Answer: Yes, both SBS 2008 and SBS 2011 do include Exchange as part of the backup process.

Question: If using a third party backup, what is the recommended procedure to get SBS to not report that backup is not configured?

Answer: It was not possible to change that alert in SBS 2008, I have not checked to see if that has changed in SBS 2011, but I suspect that it works the same as SBS 2008, meaning that you will still see the alert even though you have a third-party backup configured and running.

Question: for smaller clients that might use Microsoft Security Essentials will they be reporting back to the SBS console that they are up-to-date, or virus riddled?

Answer: MSE should report correctly to the SBS console

Question: When you change external backup drives in the morning, does it make a full backup at noon on the new cartridge, thereby slowing down the system?

Answer: I believe that is correct. A full backup is taken when a backup drive is swapped out.

Question: Are you seeing issues with Forms Based Authentication service not starting up on reboot?

Answer: answered live

Question: Haven’t seen it on our production 2011.

Answer: Thanks.

Question: setup of USB backup drives needs to be done with all external drives connected – got error when adding another drive until original drives were reconnected

Answer: Great tip!

Question: Symantec Protection Suite Small Business Edition is not yet supported for SBS 2011 – any other recommendations?

Answer: Some of us are holding off on installing any AV on the SBS 2011 for the time being.

Question: If you decide to use Trend client on server, use WFBS6 for now, not WFBS7. We have WFBS7 running on our SBS 2011 TAP site, but recommend WFBS6 on new deployments for now.

Answer: That’s something we’ve heard from several people, thanks for sharing.

Question: I did experience an issue on a clean install of SBS 2011 with BAckup configured and functioning properly. For some reason the Exchange transaction log files were not being committed and deleted. I resolved the issue by killling the origional backup and after reconfiguring backup Exchange realized the backups were being performed and the transaction logs flushed. Much panic when the C: drive ran out of space in a matter of a day or two.

Answer: Thanks for sharing, we hadn’t heard about this specific item.

Question: I have Trend WFBS 7 installed on one production – most current patch released end of January addresses memeory and PCU issues. appears to work OK

Answer: Good to hear, thanks for sharing.

Question: Any issues with Outlook Anywhere / Autodiscover that you have come across on your lab boxes (that have haunted SBS 2008 in the past)?

Answer: answered live

Question: +who does a hosted console for their AV ?

Answer: Trend, Vipre are the two that i’m aware of. Others may also.

Question: thanks guys!

Answer: welcome

Question: Thanks………….. Lots of good info!

Answer: welcome!

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN
0 Categories : Amy Babinchak, Eriq Neale, Q&A, Webinar
Feb
15

Welcome Robert Pearman!

by amy

Post to Twitter Post to Facebook Post to StumbleUpon

We’re quite pleased to be able to add another non-USA consultant to the team. Robert will be adding day time support for our European friends and evening support to the East Coast of the USA. Robert’s specialty is Small Business Server and he’s recently started a blog.

Robert Pearman

Country and Time Zone (in GMT):
UK London GMT

Areas of Expertise:
Windows Server, Small Business Server, Networking, DNS/DHCP, ISA Server

Certifications and Awards:
MCP, MCDST, MCTS, MCITP, MCSA, MCSE, MCSA+S, MCSE+S, S+, N+, SBSC, SBS MVP

Technical blog and/or publications, recent speaking engagements, etc:
www.sbstips.com
robertpearman.wordpress.com

Related Work Experience or Business Ownership:
IT Authority (www.itauthority.co.uk)
Ittium Ltd (www.ittium.com)

Where I hang out online:
smallbizserver.net

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN

 

WordPress Tags: Robert,Pearman,consultant,European,East,Small,Server,London,Expertise,Windows,DHCP,Certifications,Awards,MCDST,MCTS,MCITP,MCSA,MCSE,SBSC,Technical,publications,Experience,Ittium,blog

0 Categories : Announcement, Robert Pearman
Feb
15

Updating your Exchange migration strategies

by dave

Post to Twitter Post to Facebook Post to StumbleUpon

A couple of years ago, most SMB Exchange email migrations involved .pst files, or they were swing migrations that involved moving mailbox databases and remounting them, or moving mailboxes between one server and another. All that is changed now. Why? More and more, your clients will be moving back and forth between cloud and local storage, between hosted mail (whether that be Google Apps or Intermedia Hosted Exchange) and on-premises mail. Sometime you might have a multi-site corporation that wants to relocate. A growing percentage of the migrations being conducted now involve having to move data over WAN links, and that’s a game-changer.

So you have a migration planned, and you want to change MX records and cut over, but it looks like it’s going to take 5 days to migrate those 59gb of email down from the hosted provider! What do you do?

First, you think differently. No, I’m not talking about provisioning mac.com accounts, I’m asking us to stop thinking about the mail as a big chunk of data to be moved in one unit. Don’t even think of a single mailbox in that way. Start thinking about what part of the user’s mailbox they couldn’t live without for a day or two. The last two weeks of mail? The last two months? Once you’ve identified that interval that we’ll call “staple data”, make your plan: first cut over the MX record and immediately migrate that staple data. The reduced footprint of that data will turn your multi-day mailbox move effort into a several-hour effort. As soon as the staple data is in place on the new server, then begin the import of the rest of the data. I usually call that data the “historical backfill.”

Now how do you accomplish this date-delimited dissection of the mailbox? Pretty easily. All the basic tools we use or have used have all had date-specific parameters we can use during exports and imports. Exmerge had them, the PowerShell Export\Import-Mailbox commandlets have them. What are the other tools we can use? There’s one main other one that people aren’t usually familiar with. It’s called the Exchange Transporter Suite. It was built primarily to assist people in migrating from non-Microsoft mail platforms. In addition to tools to assist with Lotus migrations, it also has a very nice IMAP and POP migration tool. The IMAP tool is especially helpful for bringing client mail off of Google Apps and onto an Exchange server without having to do it from the Outlook client. Wouldn’t it be nice to do it in one place, all the mailboxes at once? Yep. It is. I’ll introduce you more formally to that tool in a future post.

How Come ExMerge Won’t Run?

One thing I’ve realized is that many SMB consultants aren’t sure how to move mail around in a world in which ExMerge isn’t easily accessible. That’s right, you can’t run ExMerge on an SBS 2008 or Exchange 2007 server to export\import mail. Ah, you might say, I’ve heard that you have to use PowerShell instead. Partly true, but you still can’t run the PowerShell import\export scripts on the server. You have to set up a separate management workstation to run them from. In fact, you can actually run ExMerge from a separate management workstation. The same change in functionality that will not let you run the PowerShell cmdlets on the server also “broke” ExMerge on the server.

The need for a separate management workstation to handle mail import\export procedures gets complicated for those who are trying to host their SBS 2008 box at a colo. In those situations, we’ve temporarily installed VMWare on the server and installed an XP Pro VM to use as a management workstation. Trying to handle the migration via a workstation connected to the colo via VPN is NOT a good idea.

So what’s involved in setting up a management workstation to run ExMerge or use the Import\Export scripts? I would suggest that you focus on running the PowerShell scripts rather than using ExMerge, but I’ll give you the details for both:

Installing ExMerge on a 32-bit Management Workstation

For ExMerge, you are going to follow the normal rules for running Exmerge on a workstation.

1. If on XP, install the IIS Snap-In component from the Add Components Add/Remove applet.
2. If on XP, install the Windows Server AdminPack tools.
3. Install the Exchange 2003 (yes, 2003) management tools on the workstation from the Exchange 2003 media. Ignore the schema error.
4. Download and install ExMerge on the workstation.
5. Pick or create a user who is not a member of the Domain Admins group to use for the import process.
6. Create an “ExMerge” group to assign Exchange permissions to and add the target user to the group.
7. Use the Exchange Management Console to delegate “Exchange View Only Administrator” control to the ExMerge group.

8. Give the ExMerge group Send-As and Receive-As rights. The easiest way to do this is in Exchange Powershell, like this:

Get-MailboxDatabase -identity “SERVER\First Storage Group\Mailbox Database” | Add-ADPermission         -user “DOMAIN\ExMergeGroup” -ExtendedRights Receive-As, Send-As

(You’d swap SERVER and DOMAIN\ExMergeGroup with the appropriate server name and domain and group names in your environment.)

You should now be able to log on to that workstation as a member of the ExMerge group and run ExMerge to pull data out of Exchange 2007 or migrate data into Exchange 2007. I will show you how to do date-delimited extraction later in this article.

If you are interested in knowing whether ExMerge will work in the same way with Exchange 2010, the answer is no, but you can read more about that in this helpful article by Alexander Zammit.

Getting Ready to use Import-Mailbox on a 32-bit Management Workstation

If you are going to use PowerShell to pull the mail into the new Exchange 2007 server (which I recommend), then you are going to need to get a workstation ready to run the import process on. This is mainly written with an XP system in mind.

1. Install these prerequisites: .Net Framework 2.0 and its update, MMC 3.0 (if on XP), and Powershell 1.0. Ah yes, and Outlook 2007 or 2010.
2. Download, extract and install the Exchange 2007 32-bit Management Tools. Make sure you download the version that matches the service pack level of your Exchange 2007 installation, otherwise you will have problems.
3. Pick or create an account that is NOT a member of the Domain Admins or any other privileged group in the domain. Add that user to the local Administrators group on the Exchange 2007 server.
4. In the Exchange 2007 Management Console on the server (click on Organization), use the Add Exchange Administrator action to grant that user account the Exchange Server Administrator role.
5. To import and export mail, you need to grant import user account Receive-As and Send-As permission on any mailbox databases on the Exchange 2007 server. To do that, run this command at an “escalated” Exchange PowerShell prompt:

Get-MailboxDatabase | Add-ADPermission –User Importer –ExtendedRights Receive-As,Send-As
(replace Importer with the name of the user that you created\picked.)

6. Give the server some time to refresh its credential cache. If you don’t have up to a couple of hours to wait, you can restart the Information Store service on the Exchange 2007 server, and after the service restarts, the permissions will be in effect.
7. Now log on to the workstation using the account you chose/created, and open the Exchange Management Shell.
8.  To use the import-mailbox cmdlet, adapt these examples for your use or look at the official docs:

To import all the .pst files in a specific directory into appropriate mailboxes, just make sure that each .pst file is named to match the user’s mailbox alias (jsmith’s .pst would be called jsmith.pst), and then execute something like this:

Dir D:\PSTDump\*.pst | Import-Mailbox

This will look at each .pst, match it to it’s mailbox on the server and import the contents of the .pst.

To import a single .pst file that doesn’t match the mailbox name, you can do this:

import-mailbox jsmith@domain.com -pstfolderpath d:\PSTDump\johnnyboy.pst

You can also do date-delimited imports, but that’s primarily something you’d want to do as an export process in ExMerge. I’ll go over that now.

Date-Delimited Mail Exports using ExMerge

Using date-delimited exports is commonly used when mailboxes are very large and need to be exported in chunks in order to avoid the 2gb limit on ANSI .pst files. It is also useful when there are many mailboxes to be moved in a short time and it is not practical to move all the data at once.

Let’s create a scenario: It’s March 13th, 2010 and tonight we need to migrate 115 users from an Exchange 2003 server in one domain to an Exchange 2007 server in another domain. We’ve already migrated the user accounts to the new domain using LDIFDE, but now it’s time to migrate the mail. We changed the firewall’s configuration an hour ago so that new email is being delivered to the mailboxes on the new server. We’ve set up our export\import account and are ready to use ExMerge.

Because the total amount of mail on the server is equal to 79gb (yes, this is an urgent project!) and a dozen of the mailboxes are larger than 3gb, it would take quite a bit of time to export all the mail out this evening. What we will do is export the “staple data” first: all the mail from January 1st 2010 up till today. Because that is only 73 days of mail, the .pst file for each mailbox will will be relatively small, and the entire export process will probably take 35 minutes or so. Since ExMerge will automatically name the .pst file after the user alias, the exported files are ready to be imported into Exchange 2007 immediately.

We've set the range for 73 days

Once the initial run of .pst files has been exported and then imported successfully, it’s time to start working on historical backfill. We will go back to ExMerge and begin running another date-delimited export covering all of 2009, choosing a separate directory as the destination. When that export finishes, we will use import-mailbox again (pointing it at the new directory) to bring that mail into the mailboxes on the new server. We can go backwards, year by year, until all the mail has been brought in. Since the most critical data has already been imported, the migration should seem smooth to the users even if data is continuing to be imported over the next 24 hours. It is the rare user that refers to 36-month old emails on a daily basis.

What if you have just set up Exchange 2010? Can the management workstation you set up for importing into Exchange 2007 still be used? Nope, while the strategies I’ve outlined here are still valid, you can only use a system set up with Exchange 2007 management tools to import data into an Exchange 2007 mailbox server. If you have SP1 loaded on Exchange 2010, you can run the new-mailboximportrequest and new-mailboxexportrequest commands to export or import to\from .pst files. See this article for more details: http://msexchangeteam.com/archive/2010/04/26/454733.aspx

Using strategies like these can reduce the stress of having to migrate a lot of mailbox data in a short time-frame, and make large-mailboxes less formidable seeming. I hope you find this helpful. Of course, if you’re in the middle of it and short on patience, go ahead and open a ticket, and I’ll help you out!

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN
0 Categories : Dave Shackelford, Exchange, Migration, SBS 2008, Tips
Feb
14

Install or Uninstall of CAS Role Seems to Hang

by dave

Post to Twitter Post to Facebook Post to StumbleUpon

Sometimes when you are installing or uninstalling the CAS role from an Exchange 2010 server, the setup process hangs during the CAS installation/uninstallation process, right at the point that the GUI says:

performance counters for the client access server role are being configured

It would be good to wait up to 30 minute, but if you’ve waited longer than that, the process will not finish. If you check the App Log at this point, you will see some errors related to Exchange performance counters. If you cancel the setup using Task Manager and then restart the process, it will finish the second time without any significant issues. It’s happened to me three times so far, once during installation and twice during uninstallation, and quitting the process and restarting it again resolved the problem.

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN
0 Categories : Dave Shackelford, Exchange
Feb
14

Welcome Webster!

by amy

Post to Twitter Post to Facebook Post to StumbleUpon

How could a guy named Webster have turned out to be anything but an amazing Geek? Third Tier is pleased to welcome Webster to our consulting team. He brings a unique skillset to the team allowing us to introduce a new area of support: Citrix. Webster holds numerous certifications in Citrix technologies and is one of the world’s foremost and respected Citrix professionals.

Carl ‘Webster’ Webster

Country and Time Zone (in GMT): USA, CST, -6GMT

Areas of Expertise:
Citrix, Terminal Server, Windows Server, Active Directory, Group Policy, Exchange

Certifications and Awards:
Citrix Technology Professional, CCIA, CCEE, CCEA, MCT, MCITP, MCTS, MCSE: Messaging, MCSE, MCSA

Technical blog and/or publications, recent speaking engagements, etc:
http://dabcc.com/Webster
http://dabcc.com/BasicsofXenAppBook.html

Related Work Experience or Business Ownership:
9 years in Mainframes, 15 years in software development and 10 years in Windows networking.

Where I hang out online:

http://www.experts-exchange.com/Software/System_Utilities/Remote_Access/Citrix/

ntsysadmin@lyris.sunbelt-software.com

exchangelist@lyris.sunbelt-software.com

thin@freelists.org

Social Networking:
LinkedIn, Twitter, Facebook

—–

So who wrote this blog and what do they do for a living anyway?
We’re Third Tier. We provide advanced Third Tier support for IT Professionals.
Third Tier Get Support BlogFeed Blog Twitter Twitter Facebook Facebook LinkedIn LinkedIN

WordPress Tags: Webster,Geek,Third,Tier,Citrix,certifications,technologies,Carl,Expertise,Terminal,Server,Windows,Active,Directory,Group,Policy,Exchange,Awards,Technology,Professional,CCIA,CCEE,CCEA,MCITP,MCTS,MCSE,MCSA,Technical,BasicsofXenAppBook,Mainframes,development,experts,Software,System_Utilities,dabcc,lyris,sunbelt

0 Categories : Announcement, Webster
Next Page »

Search

Support

Third Tier provides advanced support services to IT Professionals. Learn about what we do at http://www.thirdtier.net or click on the support icon below to chat with one of our support representatives.

Live Chat Software by Kayako
Third Tier
Copyright © 2013 All Rights Reserved
iThemes Builder by iThemes
Powered by WordPress