• Certificação – Second Shot até 30 de Junho

    Aproveitem! A promoção “Second Shot” está aberta até 30 de Junho de 2010, e é válida para as certificações Microsoft com prefixo “072”.

    Second Shot Offer

    Para quem não conhece, a promoção oferece um segundo exame gratuito caso você não passe na primeira tentativa.

    Verifique as condições da promoção e o procedimento para se registrar em: http://www.microsoft.com/learning/student-career/en/us/career-offer.aspx

  • Comandos para a planilha Exchange Storage Calculator

    Comunidade de UC,

    Estou trabalhando fazem algumas semanas para montar uma “sheet” adicional para o Exchange Storage Calculator (por enquanto para apenas Exchange 2007), com todos os comandos para criar os discos, formatá-los, criar os Mount Points (quando necessário) e por fim, criar os Storage Groups e Databases conforme recomendado pelo Exchange Storage Calculator.

    A planilha adicional utiliza como input a última versão disponível da planilha “Exchange 2007 Mailbox Server Role Storage Requirements Calculator” do time de produto de Exchange.

    A planilha adicional está toda em inglês, pois queremos que ela faça parte da próxima versão (v.16.10) a ser liberada pelo time de produto.

    IMPORTANTE: Precisamos do seu feedback para melhor a planilha dia-a-dia, por favor, mande e-mail com seu comentário para mim, através do link.

    Como utilizar a planilha?

    1) Preencha a guia Input da planilha com os parâmetros de configuração do ambiente Exchange e principalmente os perfil dos usuários. Para mais informação sobre o preenchimento da guia INPUT acesso o blog do time de produto: http://msexchangeteam.com/archive/2007/01/15/432207.aspx

    2) Preencha a guia E2007 Commands da planilha no quadro Disks Configuration com os seguintes parâmetros:

    image

    First available drive letter - Normalmente o disco local utiliza a letra C, a unidade de DVD utiliza a letra D, neste caso a sua primeira letra disponível é a letra E. Se você utiliza um disco adicional, utilize a letra F ou outra letra.

    ID number of your first DB disk – Verifique no Disk Management o número do primeiro disco que será utilizado para armazenar as bases de dados do Exchange. Normalmente o disco local é o Disk0, desta forma, utilize o número 1.

    ID number of your first LOG disk - Verifique no Disk Management o número do primeiro disco que será utilizado para armazenar os logs do Exchange. Normalmente o disco local é o Disk0 e os próximos são utilizados pelas bases de dados do Exchange. Se você tem 5 discos reservados para o Exchange Database, use 6 neste campo.

    Storage recommended Cluster Size – Muitos fabricantes possuem ferramentas e orientação para o alinhamento dos setores (sector aligmment) da sua plataforma de storage. Verifique com o fornecedor antes de alterar uma mudança de alinhamento dos setores com Diskpart. Caso o fornecedor não tenha ferramentas para essa tarefa ou alguma orientação específica, utilize o Diskpart como o parâmetro 64 (create partition primary align=64).

    Use letter drive for each – Escolha uma das opções.

    • Escolha a opção SERVIDOR se você quiser usar uma letra para todos os Storage Groups, portanto, você usará uma letra para o primeiro Exchange Database e Mount Points para outros Exchange Databases e todos os Logs. Use esta opção se você tiver mais de 20 Storage Groups.
    • Escolha a opção STORAGE GROUP se você quiser usar uma letra para cada Storage Group, logo, você usará uma letra para o Exchange Database e um Mount Point para os Logs. Use esta opção se você tiver menos de 20 Storage Groups.
    • Escolha a opção DATABASE se você quiser usar uma letra para cada Exchange Database, logo, você usará duas letras para cada Storage Group, (1 letra para Exchange Database e outro para o Log). Use esta opção se você tiver menos de 10 Storage Groups.

    Server Name – Este parâmetro é utilizado somente para identificar o nome do servidor nos comandos de criação dos Storage Groups e Exchange Databases. Use esse parâmetro para múltiplos servidores, modifique o nome neste campo e execute todos os comandos novamente.

    Server Number – Este parâmetro é utilizado somente para criar as pastas S01, S02, S03… dos Exchange Database e Logs. Use esse parâmetro para múltiplos servidores, modifique o nome neste campo e execute todos os comandos novamente.

    Faça DOWNLOAD da planilha e dê feedback.

    E o resultado será mais ou menos isso:

    Step 1:  Create DB and LOG disks (using DISKPART)

    select disk=1
    create partition primary align=64
    assign letter=F
    select disk=2
    create partition primary align=64
    assign letter=G
    select disk=5
    create partition primary align=64
    assign letter=J
    select disk=6
    create partition primary align=64
    assign letter=K

    Step 2: Format DB and LOG disks (using Command Prompt)

    format F: /V:S01(SG1-SG7)DB /FS:ntfs /q /y /a:64K
    md F:\S01(SG1-SG7)DB
    format G: /V:S01(SG8-SG14)DB /FS:ntfs /q /y /a:64K
    md G:\S01(SG8-SG14)DB
    format J: /V:S01(SG1-SG7)LOG /FS:ntfs /q /y /a:64K
    md J:\S01(SG1-SG7)LOG
    format K: /V:S01(SG8-SG14)LOG /FS:ntfs /q /y /a:64K
    md K:\S01(SG8-SG14)LOG

    Step 3: Create Storage Groups (using Exchange PowerShell)

    New-StorageGroup -Name 'S01(SG1)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG1)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG1)LOG'
    New-StorageGroup -Name 'S01(SG2)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG2)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG2)LOG'
    New-StorageGroup -Name 'S01(SG3)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG3)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG3)LOG'
    New-StorageGroup -Name 'S01(SG4)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG4)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG4)LOG'
    New-StorageGroup -Name 'S01(SG5)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG5)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG5)LOG'
    New-StorageGroup -Name 'S01(SG6)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG6)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG6)LOG'
    New-StorageGroup -Name 'S01(SG7)' -Server 'EX01' -LogFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG7)LOG' -SystemFolderPath 'J:\S01(SG1-SG7)LOG\S01(SG7)LOG'
    New-StorageGroup -Name 'S01(SG8)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG8)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG8)LOG'
    New-StorageGroup -Name 'S01(SG9)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG9)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG9)LOG'
    New-StorageGroup -Name 'S01(SG10)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG10)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG10)LOG'
    New-StorageGroup -Name 'S01(SG11)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG11)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG11)LOG'
    New-StorageGroup -Name 'S01(SG12)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG12)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG12)LOG'
    New-StorageGroup -Name 'S01(SG13)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG13)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG13)LOG'
    New-StorageGroup -Name 'S01(SG14)' -Server 'EX01' -LogFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG14)LOG' -SystemFolderPath 'K:\S01(SG8-SG14)LOG\S01(SG14)LOG'

    Step 4: Create Mailbox Databases (using Exchange PowerShell)

    New-MailboxDatabase -Name 'S01(SG1)DB' -StorageGroup 'EX01\S01(SG1)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG1)DB\S01(SG1)DB.edb'
    New-MailboxDatabase -Name 'S01(SG2)DB' -StorageGroup 'EX01\S01(SG2)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG2)DB\S01(SG2)DB.edb'
    New-MailboxDatabase -Name 'S01(SG3)DB' -StorageGroup 'EX01\S01(SG3)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG3)DB\S01(SG3)DB.edb'
    New-MailboxDatabase -Name 'S01(SG4)DB' -StorageGroup 'EX01\S01(SG4)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG4)DB\S01(SG4)DB.edb'
    New-MailboxDatabase -Name 'S01(SG5)DB' -StorageGroup 'EX01\S01(SG5)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG5)DB\S01(SG5)DB.edb'
    New-MailboxDatabase -Name 'S01(SG6)DB' -StorageGroup 'EX01\S01(SG6)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG6)DB\S01(SG6)DB.edb'
    New-MailboxDatabase -Name 'S01(SG7)DB' -StorageGroup 'EX01\S01(SG7)' -EdbFilePath 'F:\S01(SG1-SG7)DB\S01(SG7)DB\S01(SG7)DB.edb'
    New-MailboxDatabase -Name 'S01(SG8)DB' -StorageGroup 'EX01\S01(SG8)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG8)DB\S01(SG8)DB.edb' New-MailboxDatabase -Name 'S01(SG9)DB' -StorageGroup 'EX01\S01(SG9)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG9)DB\S01(SG9)DB.edb' New-MailboxDatabase -Name 'S01(SG10)DB' -StorageGroup 'EX01\S01(SG10)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG10)DB\S01(SG10)DB.edb'
    New-MailboxDatabase -Name 'S01(SG11)DB' -StorageGroup 'EX01\S01(SG11)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG11)DB\S01(SG11)DB.edb'
    New-MailboxDatabase -Name 'S01(SG12)DB' -StorageGroup 'EX01\S01(SG12)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG12)DB\S01(SG12)DB.edb'
    New-MailboxDatabase -Name 'S01(SG13)DB' -StorageGroup 'EX01\S01(SG13)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG13)DB\S01(SG13)DB.edb'
    New-MailboxDatabase -Name 'S01(SG14)DB' -StorageGroup 'EX01\S01(SG14)' -EdbFilePath 'G:\S01(SG8-SG14)DB\S01(SG14)DB\S01(SG14)DB.edb'

    Step 5: Mount Databases (using Exchange PowerShell)

    Mount-Database -identity 'S01(SG1)DB'
    Mount-Database -identity 'S01(SG2)DB'
    Mount-Database -identity 'S01(SG3)DB'
    Mount-Database -identity 'S01(SG4)DB'
    Mount-Database -identity 'S01(SG5)DB'
    Mount-Database -identity 'S01(SG6)DB'
    Mount-Database -identity 'S01(SG7)DB'
    Mount-Database -identity 'S01(SG8)DB'
    Mount-Database -identity 'S01(SG9)DB'
    Mount-Database -identity 'S01(SG10)DB'
    Mount-Database -identity 'S01(SG11)DB'
    Mount-Database -identity 'S01(SG12)DB'
    Mount-Database -identity 'S01(SG13)DB'
    Mount-Database -identity 'S01(SG14)DB'

    Faça DOWNLOAD da planilha e dê feedback.

    por Marcelo Hunecke

  • Liberado o Rollup 2 para o Exchange Server 2010 RTM

    Está disponível no site de downloads da Microsoft o Rollup 2 para o Exchange Server 2010 RTM (KB 979611).

    Algumas considerações importantes:

    Disponibilidade do Update

    O update já está disponível para download no endereço abaixo e a partir do dia 23 de Março estará disponível também via Microsoft Update.
    http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=6d3ae3e0-3982-46d6-9e9c-7d7d63fae565

    Update em Inglês?

    Diferente do Exchange 2007, os rollups para o Exchange 2010, embora sejam lançados somente em Inglês, funcionam também quando aplicados em instalações em outros idiomas.

    Problemas já conhecidos

    Se você fez customizações no OWA (Outlook Web App), faça backup das customizações, especialmente do arquivo Logon.aspx, pois durante a aplicação do Rollup 2, ele irá sobrescrever as customizações existentes.

    No cmdlet “Set-ClientAccessServer” foi removido o parâmetro:
    –CleanUpInvalidAlternateServiceAccountCredentials

    Outras recomendações

    Obviamente não se esqueça de ter um backup funcional do ambiente antes de aplicar o Rollup, e agendar uma boa janela de manutenção para aplicá-lo pois durante a aplicação ele irá reiniciar os serviços do Exchange.

    Abraços e até a próxima.

    por Douglas O. Santos

  • Certificação Exchange Server 2010

    Com a chegada do Exchange Server 2010, chegam também as novas certificações do produto. Neste artigo iremos dar dicas de estudo para as novas certificações.

    Primeiro vamos explicar quais são as certificações disponíveis atualmente para o Exchange Server 2010.

    O Exchange Server 2010 tem 3 certificações principais:

    certifique - Copy

    O nível mais alto de certificação técnica disponível na plataforma Microsoft.
    O programa Microsoft Certified Master reconhece os profissionais de TI mais experientes, capazes de criar e implementar com sucesso as soluções que suprem os requisitos corporativos mais complexos.

    Conhecimentos profissionais e capacidade comprovada de realizar o trabalho.

    As credenciais da Série Professional validam um conjunto abrangente de conhecimentos necessários para se ter sucesso no trabalho.

    Conhecimentos técnicos comprovados nas tecnologias Microsoft.
    As certificações da Série de Tecnologia permitem que os profissionais sejam reconhecidos pelo seu profundo conhecimento e especialização em tecnologias específicas da Microsoft.
    Fonte: http://www.microsoft.com/brasil/certifique/novageracao.aspx 

    Vamos abordar somente as certificações MCTS e MCITP, para maiores informações sobre a certificação MCM veja o site: http://www.microsoft.com/learning/en/us/certification/master.aspx#tab2

    Treinamentos, livros e webcasts

    Existem alguns treinamentos disponíveis atualmente, sendo que alguns não estão sendo oferecidos no mercado brasileiro ainda.

    Treinamento presecial (ainda não disponível nos CPLS do Brasil):
    http://www.microsoft.com/learning/en/us/Course.aspx?ID=10135A&locale=en-us

    Treinamentos On-line (Gratuitos):
    https://www.microsoftelearning.com/eLearning/offerDetail.aspx?offerPriceId=249671
    http://www.microsoft.com/learning/en/us/training/format-learning-snacks.aspx#exchange

    Webcasts:
    What’s New with Exchange 2010
    Exchange 2010 Overview
    Exchange 2010 Archiving and Retention (Level 300)
    Exchange 2010 Upgrade and Deployment (Level 300)
    Exchange 2010 Management Tools (Level 300)
    Exchange 2010 High Availability (Level 300)
    Exchange 2010 Architecture (Level 300)

    Livros:
    http://www.microsoft.com/learning/en/us/Book.aspx?ID=13930&locale=en-us


    MCTS: Microsoft Exchange Server 2010, Configuring
    MCTS(rgb)_1312

    Para obter a certificação MCTS, é necessário passar no exame de certificação:70-662

    Os principais tópicos cobrados neste exame são os seguintes:

    Installing and Configuring Exchange Servers (15 %)
    Configuring Exchange Recipients and Public Folders (14 %)
    Configuring Client Access (15 %)
    Configuring Message Transport (15 %)
    Monitoring and Reporting (13 %)
    Implementing High Availability and Recovery (15 %)
    Configuring Message Compliance and Security (13 %)

    Como dica de estudo para o exame, segue abaixo uma série de links para documentos gratuitos na internet, que podem ser usados no processo de preparação para o exame. (Os artigos são em inglês)

    Installing and Configuring Exchange Servers (15 percent)
    Prepare the infrastructure for Exchange
    You Had Me At EHLO... : Exchange 2007 Service Pack 2 Prerequisites
    Prepare Active Directory and Domains: Exchange 2010 Help
    Install Exchange prerequisites
    Exchange 2010 System Requirements: Exchange 2010 Help
    Install Exchange roles
    Server Role Documentation Roadmap: Exchange 2010 Help
    New Installation of Exchange 2010: Exchange 2010 Help
    Upgrading to Exchange 2010: Exchange 2010 Help
    Perform a Typical Exchange 2010 Installation: Exchange 2010 Help
    Perform a Custom Exchange 2010 Installation: Exchange 2010 Help
    Install Exchange 2010 in Unattended Mode: Exchange 2010 Help
    Provision Exchange 2010 Server and Delegate Setup: Exchange 2010 Help
    Modify or Remove Exchange 2010: Exchange 2010 Help
    Create and configure databases
    Understanding the Exchange 2010 Store: Exchange 2010 Help
    Managing Mailbox Databases: Exchange 2010 Help
    Create and configure address lists
    Understanding Address Lists: Exchange 2010 Help
    Understanding Offline Address Books: Exchange 2010 Help
    Understanding E-Mail Address Policies: Exchange 2010 Help
    Managing Address Lists: Exchange 2010 Help
    Managing E-Mail Address Policies: Exchange 2010 Help
    Managing Offline Address Books: Exchange 2010 Help
    Configuring Exchange Recipients and Public Folders (14 percent)
    Create and configure mailboxes
    Managing User Mailboxes: Exchange 2010 Help
    Manage Send As Permissions for a Mailbox: Exchange 2010 Help
    Configure RBAC
    Understanding Role Based Access Control: Exchange 2010 Help
    Create and configure resource mailboxes and shared mailboxes
    Managing Resource Mailboxes and Scheduling: Exchange 2010 Help
    Create and configure recipients and distribution groups
    Managing Distribution Groups: Exchange 2010 Help
    Create and configure public folders
    Understanding Public Folders: Exchange 2010 Help
    Configuring Public Folder Permissions: Exchange 2010 Help
    Configuring Client Access (15 percent)
    Configure POP, IMAP, and Microsoft ActiveSync
    Managing POP3 and IMAP4: Exchange 2010 Help
    Managing Exchange ActiveSync: Exchange 2010 Help
    Managing POP3 and IMAP4 Security: Exchange 2010 Help
    Managing Exchange ActiveSync Security: Exchange 2010 Help
    Configure Outlook Anywhere and RPC Client Access
    Understanding the Autodiscover Service: Exchange 2010 Help
    Managing Outlook Anywhere: Exchange 2010 Help
    Managing SSL for a Client Access Server: Exchange 2010 Help
    Managing Outlook Anywhere Security: Exchange 2010 Help
    Understanding RPC Client Access: Exchange 2010 Help
    Configure federated sharing
    Understanding Federation: Exchange 2010 Help
    Managing Federation: Exchange 2010 Help
    Managing Federated Sharing: Exchange 2010 Help
    Configure Outlook Web Access (OWA)
    Managing Outlook Web App: Exchange 2010 Help
    Managing External Access to Exchange 2010: Exchange 2010 Help
    Configure ECP Virtual Directory Properties: Exchange 2010 Help
    Managing Outlook Web App Security: Exchange 2010 Help
    Configuring Message Transport (15 percent)
    Understanding Transport: Exchange 2010 Help
    Create and configure transport rules
    Transport Rules: Exchange 2010 Help
    Integrating AD RMS with Exchange: Exchange 2010 Help
    Understanding Prelicensing: Exchange 2010 Help
    Configure hub transport
    Configure Hub Transport Server Properties: Exchange 2010 Help
    Managing Accepted and Remote Domains: Exchange 2010 Help
    Configure Edge transport
    Configure Edge Transport Server Properties: Exchange 2010 Help
    Managing Edge Subscriptions: Exchange 2010 Help
    Configure message routing
    Managing Message Routing: Exchange 2010 Help
    Managing Connectors: Exchange 2010 Help
    Monitoring and Reporting (13 percent)
    Monitoring Exchange 2010: Exchange 2010 Help
    Monitor databases
    Test-ReplicationHealth: Exchange 2010 Help
    Get-StoreUsageStatistics: Exchange 2010 Help
    Get-PublicFolderStatistics: Exchange 2010 Help
    Monitor mail flow
    You Had Me At EHLO... : Spotlight on Exchange 2010: Delivery Reports
    You Had Me At EHLO... : Spotlight on Exchange 2010: Delivery Reports Part II (for Administrators)
    You Had Me At EHLO... : Spotlight on Exchange 2010: E-mail Moderation
    Managing Transport Logs: Exchange 2010 Help
    Monitor connectivity
    Using the Queue Viewer to Manage Queues: Exchange 2010 Help
    Generate reports
    Get-MailboxStatistics: Exchange 2010 Help
    Configure logging
    Permissions Event Logs: Exchange 2010 Help
    Implementing High Availability and Recovery (15 percent)
    Understanding High Availability and Site Resilience: Exchange 2010 Help
    Create and configure the Database Availability Group (DAG)
    You Had Me At EHLO... : Video: High Availability in Exchange Server 2010 - Part 4
    High Availability and Storage in Exchange 2010
    Deploying High Availability and Site Resilience: Exchange 2010 Help
    Managing Database Availability Groups: Exchange 2010 Help
    High Availability Cmdlets: Exchange 2010 Help
    Perform backup and restore of data
    Understanding Backup, Restore and Disaster Recovery: Exchange 2010 Help
    Configure public folders for high availability
    Configure high availability for non-mailbox servers
    Back up and recover server roles
    Recover an Exchange Server: Exchange 2010 Help
    Configuring Message Compliance and Security (13 percent)
    Configure records management
    Understanding Retention Policies: Exchange 2010 Help
    Understanding Managed Folders: Exchange 2010 Help
    Understanding AutoTagging: Exchange 2010 Help
    Deploying Messaging Records Management: Exchange 2010 Help
    Configure compliance
    Understanding Transport Protection Rules: Exchange 2010 Help
    Journaling: Exchange 2010 Help
    Understanding User Archive: Exchange 2010 Help
    Managing MailTips: Exchange 2010 Help
    Configure message integrity
    Securing Transport Servers: Exchange 2010 Help
    Configure anti-virus and anti-spam
    Managing Anti-Spam and Antivirus Features: Exchange 2010 Help

    MCITP: Enterprise Messaging Administrator 2010MCITP(rgb)_1313

    Para obter a certificação MCTS, é necessário passar no exame de certificação 70-662(anterior) e no exame 70-663 

    Os principais tópicos cobrados neste exame são os seguintes:

    Planning the Exchange Server 2010 Infrastructure (20 %)
    Deploying the Exchange Server 2010 Infrastructure (20 %)
    Designing and Deploying Security for the Exchange Organization (20 %)
    Designing and Deploying Exchange Server 2010 Availability and Recovery (21 %)
    Designing and Deploying Messaging Compliance, System Monitoring, and Reporting (19 %)

    Como dica de estudo para o exame, além das dicas acima, que servem também de base para a preparação para o exame 70-663, segue abaixo uma série de links para documentos gratuitos na internet, que podem ser usados no processo de preparação para o exame. (Os artigos são em inglês)

    Planning the Exchange Server 2010 Infrastructure (20 %)
    http://technet.microsoft.com/en-us/library/aa996719.aspx
    http://technet.microsoft.com/en-us/library/bb123715.aspx
    http://technet.microsoft.com/en-us/library/ff367907.aspx
    http://technet.microsoft.com/en-us/library/bb125239.aspx
    http://technet.microsoft.com/en-us/library/bb124350.aspx
    http://technet.microsoft.com/en-us/library/dd638130.aspx
    http://www.networkworld.com/subnets/microsoft/110109-exchange-server-2010-unleashed-ch3.html

    Deploying the Exchange Server 2010 Infrastructure (20 %)
    http://technet.microsoft.com/en-us/library/bb691354.aspx
    http://technet.microsoft.com/en-us/library/bb125143.aspx
    http://technet.microsoft.com/en-us/library/bb124778.aspx
    http://technet.microsoft.com/en-us/library/bb124011.aspx

    Designing and Deploying Security for the Exchange Organization (20 %)
    http://technet.microsoft.com/en-us/library/bb430764.aspx
    http://technet.microsoft.com/en-us/library/dd298183.aspx
    http://technet.microsoft.com/en-us/library/aa996604.aspx
    http://technet.microsoft.com/en-us/library/dd298045.aspx
    http://technet.microsoft.com/en-us/library/bb201740.aspx
    http://technet.microsoft.com/en-us/library/bb400932.aspx

    Designing and Deploying Exchange Server 2010 Availability and Recovery (21 %)
    http://technet.microsoft.com/en-us/library/dd638137.aspx
    http://technet.microsoft.com/en-us/library/dd638104.aspx
    http://technet.microsoft.com/en-us/library/dd638129.aspx
    http://technet.microsoft.com/en-us/library/dd876874.aspx

    Designing and Deploying Messaging Compliance, System Monitoring, and Reporting (19 %)
    http://technet.microsoft.com/en-us/library/dd351035.aspx
    http://technet.microsoft.com/en-us/library/bb124382.aspx
    http://technet.microsoft.com/en-us/library/bb123507.aspx
    http://technet.microsoft.com/en-us/library/bb123507.aspx
    http://technet.microsoft.com/en-us/library/dd335108.aspx
    http://technet.microsoft.com/en-us/library/ee332313.aspx

    Conclusão

    Boa sorte a todos que forem se enveredar pelos caminhos da certificação em Exchange Server 2010, e aproveitem enquanto a promoção do “Second Shot” ainda está disponível até 30 de junho de 2010!

    por Douglas Santos.