29 de janeiro de 2008

Notes from the field: Transporter Suite

Publiquei um post no meu outro blog com algumas notas sobre a utilização do Transporter Suite para realizar migrações do Lotus Domino para o Exchange Server 2007. Resolvi reproduzir aqui esse mesmo post, embora em Inglês (se alguém não perceber alguma coisa, pode perguntar).


A couple of weeks ago I participated in a migration project which involved a migration from Lotus Domino 7.0 to Exchange Server 2007.

I used the (free) Microsoft tool: Transporter Suite. Transporter Suite has all it takes to perform a full mail (and application) migration from Lotus to Exchange. The latest version is v08.02.0012, but I used the RTM version (if you want to know what's new, read Microsoft Transporter Suite for Lotus Domino Release Notes).

There are several approaches you can take in a similar migration project, but I prefer to place the Exchange Server in front of the Lotus Notes server, adding a non-authoritative SMTP domain and forward messages for the users not yet migrated. The following picture depicts the scenario I used.

Actually you can even make the SMTP domain authoritative for the Exchange Server, it will still forward any unresolved addresses to the Lotus Notes server if you configure a Send Connector.

My personal feeling is that Transporter Suite has lots of space for improvements. Probably there are some commercial tools more powerful and even more stable, but with a little bit of patience and some testing, the tool provided by Microsoft will do the job.

I would like to share my findings, hoping that they might help you. As I mentioned before, there is a new release of Transporter Suite that may have solved some of the problems I faced.

  1. Install the connector components on a server with the Hub Transport (HT) role. Although the documentation mentions that it can be installed on a HT or/and CAS, without the HT role I couldn't create any connections. Here's an excerpt from the official documentation:
    "All connector components (Directory Connector and Free/Busy Connector): Can only be installed on Exchange Server 2007 servers with the Hub and/or Client Access Server (CAS) roles installed; optionally, other roles (such as Mailbox or Unified Messaging) can also be installed."
  2. There's a small misprint on the documentation. You'll need to increase the maximum attachment size by editing the web.config file in the exchweb\EWS subdirectory of the ClientAccess directory on each CAS. The line that you'll need to add is:

    <httpRuntime maxRequestLength="10240" />

    Please don't forget the "/" at the end!
    (that's the misprint)
  3. I had some problems migrating users. The error I had was:

    Summary: 1 item(s). 0 succeeded, 1 failed.
    Elapsed time: 00:00:01

    User1
    Failed

    Error:
    The value "SMTP:User1@DOMAIN.COM" of property "ExternalEmailAddress" is used by another recipient object "DOMAIN.COM/Domino Contacts/User1\/HQ\/Company". Please specify another value.

    Exchange Management Shell command attempted:
    'CN=User1/OU=Sede/O=Company' | move-dominouser -Quiet -DominoDirectoryServer 'SRVNOTES' -GlobalCatalog 'DC01.DOMAIN.COM' -TargetOU '.' -InitialPassword 'System.Security.SecureString' -TargetId 'DOMAIN\User1'

    Elapsed Time: 00:00:01

    I didn't find a way of solving this problem. I think it's related with the timings associated with the remove process of the contact created previously and the subsequent copy of all proxy addresses. So, the solution was to write my own migration code. Here it is, you might find it useful:

       1: '*******************************************************************************
       2: 'migrateUsers.VBS: Copy proxyAddresses from a Domino contact to an AD user
       3: '
       4: 'Version: 0.1    
       5: 'Date:    2008/01/07
       6: 'Author:  RUI SILVA rui.silva(a)live.com
       7: '
       8: '*******************************************************************************
       9:  
      10: Const ForReading = 1
      11: Const ForWriting = 2
      12: Const ADS_SCOPE_SUBTREE = 2
      13: Const ADS_PROPERTY_UPDATE = 2
      14:  
      15: Set objConnection = CreateObject("ADODB.Connection")
      16: Set objCommand = CreateObject("ADODB.Command")
      17: objConnection.Provider = "ADsDSOObject"
      18: objConnection.Open "Active Directory Provider"
      19: Set objCommand.ActiveConnection = objConnection
      20:  
      21: objCommand.Properties("Page Size") = 1000
      22: objCommand.Properties("Searchscope") = ADS_SCOPE_SUBTREE 
      23:  
      24:     strName=InputBox("Enter username:")
      25:     objCommand.CommandText = _
      26:         "SELECT distinguishedName FROM 'LDAP://ou=Domino Contacts,dc=DOMAIN,dc=COM' WHERE objectCategory='user' " & _
      27:             "AND mailNickname='" & strName & "'"
      28:     Set objRecordSet = objCommand.Execute
      29:  
      30:     If objRecordset.RecordCount = 1 Then
      31:         strDN = objRecordSet.Fields("distinguishedName").Value
      32:         MsgBox(strDN & ": FOUND")
      33:     strDN = Replace(strDN, "/", "\/")
      34:         Set objContact = GetObject("LDAP://" & strDN)
      35:         arrProxyAddresses = objContact.GetEx("proxyAddresses")
      36:         nArr = UBound(arrProxyAddresses)
      37:         For n=0 To nArr
      38:             If InStr(arrProxyAddresses(n), "SMTP:") Then
      39:                 strEmailAddr = Mid(arrProxyAddresses(n), 6) 
      40:             End If
      41:         Next
      42:  
      43:         objCommand.CommandText = _
      44:             "SELECT distinguishedName FROM 'LDAP://ou=USERS,dc=DOMAIN,dc=COM' WHERE objectCategory='user' " & _
      45:                 "AND sAMAccountName='" & strName & "'"
      46:         Set objRecordSet2 = objCommand.Execute
      47:  
      48:         If objRecordset2.RecordCount = 1 Then
      49:             strDN2 = objRecordSet2.Fields("distinguishedName").Value
      50:             MsgBox(strDN2 & ": USER FOUND")
      51:             Set objRecipient = GetObject("LDAP://" & strDN2)
      52:  
      53:             objRecipient.ProxyAddresses = arrProxyAddresses
      54:             objRecipient.put "mailnickname", strName
      55:             objRecipient.put "mail", strEmailAddr
      56: '            objRecipient.MailEnable strEmailAddr
      57:             objRecipient.SetInfo
      58:             MsgBox("OK")
      59:         End If
      60:  
      61:         objContact.DeleteObject(0)
      62:  
      63:         objRecordset.Close
      64:         objRecordset2.Close
      65:        
      66:     Else    
      67:         MsgBox(strName & ": NOT_FOUND")
      68:     End If
      69:     
      70: objConnection.Close

Good luck for your migration! Don't forget to read the documentation: Microsoft Transporter for Lotus Domino End-to-End Guidance.

26 de janeiro de 2008

Outlook 2007 demos

A Microsoft disponibilizou 2 vídeos que demonstram como realizar algumas das tarefas mais comuns no Microsoft Office Outlook 2007.

  • Outlook 2007 Demo: Create and use an e-mail signature - In Microsoft Office Outlook 2007, you can create and store different signatures for different circumstances. It's easy to create a signature that includes the information you want— whether it's a plain signature with just your name or an elaborate one with a photo, hyperlink, contact details, and several lines of text formatted for clarity and emphasis. Set a signature to appear by default, or add one with a quick right-click. Creating, managing, and using e-mail signatures is easy.
  • Outlook 2007 Demo: Customize your calendar- Did you know that the views in your Outlook 2007 calendar are fully customizable? For example, you can view your days and weeks in increments of 5 minutes, 60 minutes, and a variety of periods in between. You can adjust the view of your calendar according to your work week and work day; for instance, you can display Sunday through Thursday and show a normal day as being 11 in the morning to 7 in the evening if you like. Use different color schemes, and show more or less detail in your calendar. Watch the demo to see how to do all this and more.

25 de janeiro de 2008

Leitura de fim-de-semana

24 de janeiro de 2008

Techdays 2008

A edição deste ano do Techdays, o maior evento técnico organizado pela Microsoft Portugal, vai ocorrer  de 12 a 14 de Março no Centro de Congressos de Lisboa.

O evento será precedido no dia 11 pelo lançamento de 3 novos produtos:

  • Windows Server 2008
  • SQL Server 2008
  • Visual Studio 2008

O dia do lançamento terá entrada livre, mas os Techdays terão o seguinte custo de inscrição:

  • 149,00€ até 25 de Janeiro de 2008
  • 225,00€ até 22 de Fevereiro de 2008

Aqui ficam os links com toda a informação do evento:

A Unisys é mais uma vez um dos patrocinadores principais ;-)

Technorati :

18 de janeiro de 2008

Leitura de fim-de-semana

Capítulos grátis de livro de PowerShell

Uma amiga minha, a Ilse Van Criekinge (MVP de Exchange e vencedora do Speaker Idol do TechEd IT Forum deste ano) é a autora de um livro sobre Powershell que vai ser lançado dentro em breve.

O livro, Exchange Management Shell: TFM, ainda não está pronto, mas as boas notícias é que se pode fazer o download grátis de alguns capítulos não editados a partir do site da SAPIEN.

Qualquer feedback é sempre bem-vindo e pode ser enviado por correio electrónico para errata@sapien.com ou directamente para a Ilse: ilse.vancriekinge@pro-exchange.be.

"Exchange Management Shell: TFM provides the answers in a "cookbook" format that focuses on real-world Exchange Server 2007 management tasks, and how to accomplish them in Windows PowerShell. This authoritative and comprehensive book includes a standardized "crash course" in Windows PowerShell for newcomers, and dives right into the nuts and bolts of becoming a leading-edge, command-line Exchange administrator."

15 de janeiro de 2008

Exchange Best Practices Analyzer (ExBPA) Web Update Pack

Está disponível para download o Microsoft Exchange Best Practices Analyzer Web Update Pack (v2.11.18.0).

Brief Description
Configuration, rule, and help updates for the Exchange Best Practices Analyzer v2.8.

Overview
This download contains the latest XML and ExBPA.chm files. Use this package to update your existing installation of the Exchange Best Practices Analyzer. NOTE: If Internet connectivity is available, the Exchange Best Practices Analyzer will attempt to automatically update itself from the Internet. Where updates are being applied automatically, there is no need to download the Web Update Pack.
To find out which version of ExBPA.Config.xml is installed on your computer, click the 'About Exchange Best Practices Analyzer' link within the tool. The upper version number refers to the core application (e.g. 2.9.7926.0), the lower version is for the configuration XML file.

Instructions
Download and run the package. When prompted, extract the files to your Exchange Best Practices Analyzer program folder (usually C:\Program Files\ExBPA\en).

MCITP: Enterprise Messaging Administrator

Depois de hoje ter passado no exame 70-238, ganhei a certificação MCITP: Enterprise Messaging Administrator.

Para atingir esta certificação é necessário realizar com sucesso 3 exames:

Os 2 primeiros não são complicados, o último é um pouco mais difícil, mas qualquer um com experiência de campo suficiente consegue passar.

8 de janeiro de 2008

Como activar a Standby Continuous Replication (SCR)

Standby Continuous Replication é uma das melhores funcionalidades introduzidas com o Exchange Server 2007 SP1.

Recentemente tive a oportunidade de utilizar SCR, pelo que segui os passos descritos no artigo da Microsoft TechNet, How to Enable Standby Continuous Replication for an Existing Storage Group. Uma vez que todos os transactions logs desde a criação do Storage Group não estavam disponíveis (o que é normal devido ao processo de backup), tive que utilizar seeding do nó passivo.

Estes são os passos necessários para este cenário:

  1. Garantir que podem ser utilizadas as mesmas paths dos ficheiros de transaction logs e da base de dados, tanto no SCR Source, como no SCR Target.
  2. No nó activo (ou SCR source) correr o seguinte cmdlet de Exchange Management Shell cmdlet:
    Enable-StorageGroupCopy -Identity 
    <NameofStorageGroup> -StandbyMachine
    <SCRTargetMachine> -ReplayLagTime 0.1:0:0

  3. Outra vez no nó activo, suspender a replicação:
    Suspend-StorageGroupCopy 
    -Identity <Server\StorageGroupName>
    -StandbyMachine <SCRTargetMachine>

  4. No nó passivo (ou SCR Target) correr o seguinte comando:
    Update-StorageGroupCopy 
    -Identity <Server\StorageGroupName>
    -StandbyMachine <SCRTargetMachine>

Este último passo vai iniciar a sincronização do ficheiro de base de dados do SCR Source para o SCR Target e pode demorar um bocado, dependendo da quantidade de dados a copiar. No final, o processo de réplica será automaticamente reiniciado.


Para verificar o estado da réplica, pode ser utilizado o seguinte cmdlet de PowerShell:

Get-StorageGroupCopyStatus -Server:<SCRTargetMachine>

26 de dezembro de 2007

MSIT whitepapers

Nino Bilic escreveu recentemente no blog You Had Me At EHLO de 4 novos documentos técnicos da Microsoft IT. Eu já tive a oportunidade de referir 3 desses documentos em posts anteriores, pelo que o realmente novo é apenas este:

  • Operating a Global Messaging Environment by Using Exchange Server 2007 - Enterprise IT organizations, including the Microsoft Information Technology (Microsoft IT) group, deal with service level agreements (SLAs) and power users accustomed to high levels of performance, availability, and responsiveness. The 130,000-plus users at Microsoft send over 3 million internal e-mail messages a day from more than 150 offices worldwide, as well as from home and while on the road. At Microsoft, many business-critical communication processes depend on the availability of messaging services provided through Microsoft® Exchange Server 2007. [...]

Este whitepaper pode ser também descarregado como um Documento Word e está igualmente disponível a respectiva apresentação PowerPoint.

Mailbox Server Role Storage Requirements Calculator v13.0

A equipa de Exchange da Microsoft disponibilizou o Mailbox Server Role Storage Requirements Calculator v13.0. Esta folha de cálculo permite-me poupar imenso tempo no dimensionamento de servidores de mailbox, por isso o meu conselho é que a comecem também a utilizar.

Aqui fica uma lista das actualizações desta nova versão:

  • We have updated the log generation numbers per message profile to be in line with our updated guidance.
  • In v11.8, we decided to list the database cache per mailbox in the Storage Requirements results section.  However this lead to confusion because it was named "Memory Profile / Mailbox" which implied that you would only utilize the associated amount of memory with the message profile (i.e. 5MB with Heavy profile), however that is not always the case. For example, 1200 2GB Light message profile mailboxes only requires 5GB of RAM (1200 * 2MB + 2GB), however the design requires 13 databases, which with SP1 requires 6GB of RAM.  ESE will utilize 4GB of that RAM for the cache.  As a result, 4096MB / 1200 ≈ 3.5MB per mailbox. So to make this clear, we have changed this text to be "Database Cache / Mailbox" which indicates how much cache is available per mailbox.
  • In the scenario where you override the IOPS prediction formula for your mailbox tiers, we have adjusted the "Read:Write Ratio" input to allow you to enter any read percentage you would like, rather than restricting you to a few key ratios.
  • We updated the "Database Reads / Mailbox" calculation description.
  • We updated the Log Replication Requirements worksheet, simplifying the data displayed in the results section.
  • We have included new functionality for log replication requirements.  You now have the input options for entering your network link type and its associated latency.  These options are then used to recommend TCP/IP optimization settings for Windows Server 2003 when utilizing geographically dispersed clustering and/or standby continuous replication.  In addition, if the chosen network link cannot sustain the throughput requirements for log replication, we will recommend an appropriately sized network link and Windows Server 2003 TCP/IP optimization settings.

A ferramenta propriamente dita pode ser obtida neste link.

21 de dezembro de 2007

Leitura de fim-de-semana

Webcasts de messaging em Janeiro


TechNet Webcast: eDiscovery for E-Mail (Level 200)
Friday, January 11, 2008 - 11:30 AM Pacific Time
Diane Prescott, Technical Product Manager, Microsoft Corporation, Aimee Chaille, Lead Product Manager, Microsoft Corporation
http://go.microsoft.com/?linkid=7964822

TechNet Webcast: Exchange Server 2007 in Depth (Part 1 of 8): Overview (Level 200)
Wednesday, January 16, 2008 - 1:00 PM - 2:30 PM Pacific Time
Chris Avis, TechNet Presenter, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032363557&Culture=en-US

TechNet Webcast: Exchange Server 2007 in Depth (Part 2 of 8): Deployment and Migration (Level 200)
Friday, January 18, 2008 - 1:00 PM - 2:30 PM Pacific Time
Chris Avis, TechNet Presenter, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032363559&Culture=en-US

TechNet Webcast: Exchange Server 2007 in Depth (Part 3 of 8): Introduction to the New Management Console (Level 200)
Monday, January 21, 2008 - 1:00 PM - 2:30 PM Pacific Time
Shawn Travers, TechNet Presenter, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032363568&Culture=en-US

TechNet Webcast: How Microsoft IT Implemented New Storage Designs for Exchange Server 2007 (Level 300)
Tuesday, January 22, 2008 - 9:30 AM - 10:30 AM Pacific Time
Kyryl Perederiy, Sr. Systems Engineer, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032362421&Culture=en-US

TechNet Webcast: Exchange Server 2007 in Depth (Part 4 of 8): Introduction to Windows PowerShell Scripting (Level 200)
Wednesday, January 23, 2008 - 1:00 PM - 2:30 PM Pacific Time
John Baker, TechNet Presenter, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032363572&Culture=en-US

TechNet Webcast: Exchange Server 2007 in Depth (Part 5 of 8): Client Access and Web Services (Level 200)
Friday, January 25, 2008 - 1:00 PM - 2:30 PM Pacific Time
John Weston, TechNet Presenter, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032363574&Culture=en-US

TechNet Webcast: Exchange Server 2007 in Depth (Part 6 of 8): Disaster Recovery (Level 200)
Wednesday, January 30, 2008 - 1:00 PM - 2:30 PM Pacific Time
Harold Wong, Senior Technology Specialist, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032363577&Culture=en-US

Microsoft Office System Webcast: Top Tips for Managing E-Mail in Outlook 2007 (Level 100)
Tuesday, January 15, 2008 - 9:00 AM - 10:00 AM Pacific Time
Andrew Reed, Senior Training Specialist, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032360819&Culture=en-US

TechNet Magazine - Janeiro 2008

Já está disponível a edição de Janeiro da TechNet Magazine (também disponível para download em formato HTML Help .chm).

Depois de ultrapassado o hype à volta do Service Pack 1 do Exchange Server 2007, o tema é agora o System Center, com um especial enfoque na virtualização. Lembrem-se que o Hiper-V está aí mesmo a chegar.

Mas revista que é revista tem que ter alguns artigos dedicados à temática do correio electrónico, por isso aqui ficam os links:

20 de dezembro de 2007

Documentação Forefront & Antigen SP1

Após a disponibilização do SP1 do Exchange Server 2007, assistiu-se ao lançamento quase de imediato do  SP1 de produtos muito próximos do Exchange.

Entretanto a documentação desses mesmos produtos foi actualizada e está agora disponível para download:

  • Microsoft Antigen SP1 Documentation - The Messaging Security Suite includes Antigen for Exchange, Antigen for SMTP Gateways, and Antigen Spam Manager, and provides server-level protection against the latest e-mail threats.
  • Microsoft Forefront Security for Exchange Server with SP1 Documentation - Forefront Security for Exchange Server SP1 integrates multiple scan engines from industry-leading security firms into a comprehensive, layered solution, helping protect your Microsoft Exchange Server messaging environments from viruses, worms, spam, and inappropriate content.
    This new release provides support for Exchange Server 2007 SP1 and Windows Server 2008, as well as content filtering and manageability enhancements.

Chamo a vossa atenção para um dos documentos disponíveis no último link e que se prende com a instalação em cluster do Forefront. Apesar de poder ser instalado em ambientes cluster, a verdade é que a versão RTM do Forefront não é verdadeiramente cluster-aware, o que pode provocar alguns eventos aborrecidos no Application Event Log.

Existe um hotfix disponível e que está descrito no seguinte artigo da Knowledge Base:

Este hotfix é na realidade uma instalação completa do Forefront, tornando-o cluster-aware (vão notar um novo cluster resource).

Ainda não tive oportunidade de experimentar o Forefront SP1, mas espero que inclua o fix atrás descrito (de acordo com o ficheiro README, isso está garantido).

18 de dezembro de 2007

PowerShell commands for Active Directory

Ora aqui está um assunto que eu andava para blogar desde que o li no blogue do Evan Dodds.

A Quest disponibiliza o ActiveRoles Management Shell for Active Directory que mais não é que um conjunto de comandos PowerShell (CMDLETs) que podem ser descarregados de forma grátis da página da Quest e utilizados para realizar operações de administração na Active Directory.

The ActiveRoles Management Shell for Active Directory is an Active Directoryspecific automation and scripting shell that provides a command-line management interface for administering directory data either via Quest ActiveRoles Server or by directly accessing Active Directory domain controllers. The ActiveRoles Management Shell is built on Microsoft Windows PowerShell technology.

The ActiveRoles Management Shell is implemented as a Windows PowerShell snap-in, providing an extension to the Windows PowerShell environment.

As the commands provided by the ActiveRoles Management Shell conform to the Windows PowerShell standards, and are fully compatible with the default command-line tools that come with Windows PowerShell, the information found in the above documents of Microsoft’s is fully applicable to the ActiveRoles Management Shell for Active Directory.

Recentemente, necessitei de exportar todos os ProxyAddresses de vários utilizadores, pelo que estes cmdlets se revelaram bastante úteis. Aqui fica a linha de comando utilizada:

Get-QADUser -DontUseDefaultIncludedProperties -ObjectAttributes @{mail='*'} -IncludedProperties sAMAccountName,distinguishedName,mail,
userPrincipalName,proxyAddresses  -SerializeValues -SizeLimit 0 | Export-Csv 'C:\proxyAddresses.csv'

E esta é a lista de todos os cmdlets disponíveis:

CONNECT-QADSERVICE
DISCONNECT-QADSERVICE
GET-QADUSER
SET-QADUSER
NEW-QADUSER
DISABLE-QADUSER
ENABLE-QADUSER
UNLOCK-QADUSER
GET-QADGROUP
SET-QADGROUP
NEW-QADGROUP
GET-QADGROUPMEMBER
ADD-QADGROUPMEMBER
REMOVE-QADGROUPMEMBER
GET-QADCOMPUTER
GET-QADOBJECT
SET-QADOBJECT
NEW-QADOBJECT
MOVE-QADOBJECT
RENAME-QADOBJECT
REMOVE-QADOBJECT
NEW-QADPASSWORDSETTINGSOBJECT
GET-QADPASSWORDSETTINGSOBJECT
ADD-QADPASSWORDSETTINGSOBJECTAPPLIESTO
REMOVE-QADPASSWORDSETTINGSOBJECTAPPLIESTO
CONVERT-QADATTRIBUTEVALUE
GET-QADPSSNAPINSETTINGS
SET-QADPSSNAPINSETTINGS

Office 2007 SP1

Embora seja perfeitamente possível interagir com o Exchange Server sem o Outlook 2007 (ou qualquer outra versão), a verdade é que a utilização do cliente rico da Microsoft eleva a experiência de utilização para um nível bastante mais elevado.

Por isso, para quem está a utilizar o Outlook 2007, vai gostar de saber que já está disponível o 2007 Microsoft Office Suite Service Pack 1.

Aqui estão algumas das melhorias do Outlook 2007 SP1:

  • General performance and responsiveness improvements
  • POP3 mail download improvements
  • Improved support for RSS feeds
  • Meeting reliability improvements

Overview
The 2007 Microsoft Office suite Service Pack 1 delivers important customer-requested stability and performance improvements, while incorporating further enhancements to user security. This service pack also includes all of the updates released for the 2007 Office suite prior to December of 2007. You can get a more complete description of SP1, including a list of issues that were fixed, in the Microsoft Knowledge Base article
936982: Description of the 2007 Microsoft Office suite Service Pack 1.
Service Pack 1 will install even if a publicly available update has already been installed on your computer.
SP1 also includes stability improvements developed as a result of user input from the
Microsoft Online Crash Analysis and from Microsoft Product Support feedback.

System Requirements

  • Supported Operating Systems: Windows Server 2003 Service Pack 1; Windows Vista; Windows XP Service Pack 2
This update applies to the following programs:
  • Microsoft® Office Basic 2007
  • Microsoft® Office Enterprise 2007
  • Microsoft® Office Home and Student 2007
  • Microsoft® Office Professional 2007
  • Microsoft® Office Professional Plus 2007
  • Microsoft® Office Small Business 2007
  • Microsoft® Office Small Business Management 2007
  • Microsoft® Office Standard 2007
  • Microsoft® Office Ultimate 2007
  • Microsoft® Office Access® 2007
  • Microsoft® Office Excel® 2007
  • Microsoft® Office InfoPath® 2007
  • Microsoft® Office Outlook® 2007
  • Microsoft® Office PowerPoint® 2007
  • Microsoft® Office Publisher® 2007
  • Microsoft® Office Word 2007
  • Microsoft® Office OneNote® 2007
  • Microsoft® Office Groove® 2007

Additional requirements:
  • To successfully install SP1, you must have Microsoft Installer 3.1 (MSI 3.1) or higher. For more information, including instructions for downloading MSI 3.1, please see the Microsoft Knowledge Base article 942101.
  • To successfully install SP1, you will need more free hard disk space than the size of the patch itself. For more specific information about the space requirements, please see the Microsoft Knowledge Base article 943589.

Instructions
There are several scenarios that may require you to reboot your computer after SP1 is installed. For more information, see the Microsoft Knowledge Base article
942995.
To install this update, do one of the following:

  • Use Microsoft Update (recommended). Microsoft Update consolidates updates provided by Windows Update and Office Update into one location and enables you to choose automatic delivery and installation of high-priority updates.
  • Use Office Update on the Office Online Web site. After running the automatic detection, Office Update prompts you to install updates and service packs that bring your Office products up to the best quality available. Office Update is not supported on Windows Vista.
  • Install the 2007 Microsoft Office suite SP1 manually. To do this, follow these steps:
    • Download the file by clicking the Download button at the top of this page. Save the file to your hard disk drive. Note: The 2007 Office suite SP1 is available on CD-ROM through the Office Online page Order Office Service Packs on CD-ROM.
    • It is recommended that you quit any programs you are running.
    • In Windows Explorer, double-click the .exe file that you saved to your hard disk drive, and follow the instructions on the screen.
When using other Microsoft Office products
If you are using the following Microsoft Office products, we recommend that you get the latest service packs:

To remove this download
There is no uninstall feature for this download. For more information, see the Microsoft Knowledge Base article
873125.

Administrator resources
Administrators working in managed environments can find complete resources for deploying Office updates in an organization on the
2007 Office Resource Kit site.
For further information about this update, see Microsoft Knowledge Base article
936982: Description of the 2007 Microsoft Office suite Service Pack 1.

10 de dezembro de 2007

Exchange Server 2007 Updating Support Skills

Exchange Server 2007 Updating Support Skills on Setup and System Management was written by Microsoft Customer Service and Support to prepare Support Engineers who are assisting customers installing Exchange Server 2007 Service Pack 1 (SP1). We hope that you find the step-by-step approach useful and appreciate any feedback.

There are 5 lessons in this course:

Lesson 1: Setup Concepts
Lesson 2: Preparing for Exchange Server 2007 Installation
Lesson 3: Installing Exchange Server 2007
Lesson 4: Deployment Considerations
Lesson 5: Troubleshooting Exchange Server 2007 Setup

8 de dezembro de 2007

Webcasts de Exchange em Dezembro

TechNet Webcast: Disaster Recovery in Exchange Server 2007 (Level 200)
Wednesday, December 05, 2007 - 11:30 AM - 1:00 PM Pacific Time
Chris Avis, IT Pro Evangelist, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032359939&Culture=en-US

TechNet Webcast: Microsoft Exchange Troubleshooting Assistant (Level 200)
Friday, December 14, 2007 - 8:00 AM - 9:00 AM Pacific Time
Chris Gregson, Support Escalation Engineer, Microsoft Corporation
Mike Hendrickson, Support Escalation Engineer, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032359204&Culture=en-US

Momentum Webcast: How Microsoft Can Provide E-mail Security, Compliance, and Availability (Level 100)
Thursday, December 06, 2007 - 9:00 AM - 10:00 AM Pacific Time
Eric Trimble, Unified Communications Services Partner Account Manager, Microsoft Corporation
http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032355609&Culture=en-US

Fonte: Eileen Brown's weblog

Q&A com MVPs

Ainda vão a tempo de se registarem para a próxima sessão de Q&A com MVPs:

Q&A With the Exchange Server MVP Experts
We invite you to attend a Q&A with the Microsoft Exchange Server MVPs. In this chat Exchange MVPs will be on hand to answer your questions about Exchange Server, Outlook and Exchange for Small Business Server. So if you are thinking of upgrading to Exchange Server 2007 or have questions about Exchange Server 2003 we hope you can join us for this informative online chat!

Add to Calendar

December 12, 2007
5:00 P.M. Pacific Time
Additional Time Zones

EnterChatRoom

Microsoft Exchange Server 2007 SP1 VHD

Boas notícias para quem quiser testar o Service Pack 1 do Exchange Server 2007 sem ter o trabalho de o instalar: já está disponível para download uma imagem virtual com o SP1 já instalado.

Overview
The Microsoft VHD Test Drive Program provides customers with an enhanced server-based software evaluation experience that’s faster, better supported and more flexible. You can now access the entire catalog of pre-configured Microsoft and partner products and solutions in the VHD format and start evaluating and testing today from www.microsoft.com/vhd.
This download enables you to evaluate Microsoft Exchange Server 2007 SP1. Microsoft Exchange Server 2007 is designed to reduce the growing cost and complexity of managing a corporate messaging system by providing more control for IT administrators, more value and expanded inbox access for end users, and increased security and compliance for the organization as a whole.
Microsoft Exchange Server 2007 SP1 provides built-in protection technologies to help keep the e-mail system up and running and better protected from outside threats while allowing employees to work from wherever they are using a variety of clients including Microsoft Outlook, Outlook Web Access, and mobile devices. Exchange Server 2007 SP1 makes it easier for IT to deliver these new capabilities to their organizations by making the messaging environment easier to manage and more cost efficient.
This fully functional pre-configured VHD provides you with a trial software that will automatically expire after 30 days.
This is a preconfigured virtual machine contained within the Virtual Hard Disk (VHD) format. A virtualization product that supports the VHD format is required to use this virtual machine. Microsoft
Virtual PC or Microsoft Virtual Server are provided for free and can be used with these VHD based virtual machines. Please refer to the system requirements section for more details.

System Requirements

  • Supported Operating Systems: Windows Server 2003; Windows Vista; Windows XP

A virtualization product that supports the VHD format is required to use this virtual machine. Microsoft Virtual PC or Microsoft Virtual Server are provided for free and can be used with these VHD based virtual machines. Please refer to the Virtual Server 2005 R2 System requirements page here.
In addition to the System Requirements for the virtualization product, you will need additional disk and memory resources for running the virtual machine. This VHD is pre-configured to use approximately 10GB of hard disk space and approximately 1024MB of memory.

Instructions
In order to use this evaluation package you will need to have Microsoft Virtual Server 2005 R2 installed on a physical machine. If you do not have Virtual Server installed you can get this product free of charge from www.microsoft.com/virtualserver. Details of how to install Virtual Server 2005 R2 are included in the download and documentation that accompanies the product.
You will also find a readme document as a part of the download. Please refer to this for additional details on how to extract and use the VHD as a part of the download.

7 de dezembro de 2007

1 de dezembro de 2007

TechNet Magazine - Dezembro 2007

Mesmo que ainda não tenham terminado a Leitura de fim-de-semana, aqui ficam mais umas sugestões literárias. A edição de Dezembro da TechNet Magazine já disponível online ou, como é habitual, via download do ficheiro de HTML Help (.CHM).

Não foi surpresa nenhuma verificar que o tema central deste número é o Exchange Server, dado que o SP1 acaba de ser lançado.

"Not your typical update, Service Pack 1 for Exchange Server 2007 provides a number of features and additions that include support for IPv6, standby continuous replication, better mailbox management, and lots more. Here we count down 16 enhancements, show you how to deploy Unified Messaging, clarify replication options, and even get you ready to deploy Exchange 2007 on Windows Server 2008."

Aqui fica uma lista dos artigos mais relevantes:

  • 16 New Features in Exchange Server 2007 Service Pack 1 - Unlike the typical service pack, Exchange Server 2007 Service Pack 1 provides a lot more than just hotfixes and security updates. Here's an overview of some of the most important new features and capabilities SP1 has to offer. Tony Smith
  • Standby Continuous Replication in Exchange Server 2007 Service Pack 1 - One of the most exciting features offered by Service Pack 1 is Standby Continuous Replication. Find out how this can help you improve uptime, limit data loss, and simplify e-mail maintenance and retention. Scott Schnoll
  • Running Exchange with Windows Server 2008 - Getting ready to run Exchange on Windows Server 2008? The Microsoft Exchange Development team has been doing this for a while now, and Paul Bowden shares some advice and lessons they've learned to help you get ready. Paul Bowden
  • Deploying Unified Messaging with Exchange Server 2007 - Combining voicemail, fax capabilities, and e-mail messaging into a single mailbox may seem like a daunting task. But it's easier than you think. Here's a guide to deploying unified messaging in your organization. Jeff Goodwin

Leitura de fim-de-semana

29 de novembro de 2007

Preparem-se para o Exchange Server 2007 SP1

Finalmente acabou o suspense. Segundo a newsletter TechNet Flash, o SP1 é disponibilizado amanhã:

On November 30, you will be able to download Exchange Server 2007 with Service Pack 1. The list of new features in SP1 is long, including new deployment options, new features and improvements for each server role, improved integration with other applications, and even a new, third type of continuous replication. There are also general updates to almost all of the high availability topics for SP1, as well as significant updates in other content areas, such as those related to the Mailbox, Client Access, Hub Transport and Edge Transport, and the Unified Messaging server roles. You can find documentation on the new features by browsing or searching the Exchange Server TechCenter Library. If you're in evaluation mode, you can now download the Exchange Server 2007 with Service Pack 1 trial software and see how secure, anywhere access can enhance operational efficiency.

27 de novembro de 2007

Exchange 2003 MSIT Configuration Packs for ConfigMgr 2007

A Microsoft disponibilizou Configuration Packs para o System Center Configuration Manager 2007 que contêm os configuration items necessários para gerir os server roles de Exchange Server 2003, e que foram desenvolvidos com base nas definições utilizadas pela equipa de Microsoft IT na configuração destes server roles.

  • Microsoft Exchange Server 2003 MSIT Basic Configuration Pack for Configuration Manager 2007 - The Microsoft Exchange Server 2003 MSIT Basic Configuration Pack is designed to be used for managing the configuration of Exchange 2003 servers. This configuration pack defines recommended configurations based on a limited number of settings affecting the configuration of Exchange 2003 servers in the Microsoft IT environment. More extensive configuration items and settings can be obtained by downloading the Microsoft Exchange Server 2003 MSIT Intermediate and Comprehensive Configuration Packs. It is recommended that users begin by evaluating their configuration against the Basic configuration pack, and then progress to the Intermediate and Comprehensive configuration packs as desired configurations are verified.
  • Microsoft Exchange Server 2003 MSIT Intermediate Configuration Pack for Configuration Manager 2007 - The Microsoft Exchange Server 2003 MSIT Intermediate Configuration Pack is designed to be used for managing the configuration of Exchange 2003 servers. This configuration pack defines recommended configurations based on a substantial number of settings affecting the configuration of Exchange 2003 servers in the Microsoft IT environment. A partial list of the included configuration items and settings can be obtained by downloading the Microsoft Exchange Server 2003 MSIT Basic Configuration Pack; more extensive configuration items and settings can be obtained by downloading the Microsoft Exchange Server 2003 MSIT Comprehensive Configuration Pack. It is recommended that users begin by evaluating their configuration against the Basic configuration pack, and then progress to the Intermediate and Comprehensive configuration packs as desired configurations are verified.

Exchange 2007 e certificados

Depois de instalada uma nova infra-estrutura de Exchange Server 2007, é preciso garantir que todos os clientes, tais como Outlook Web Access e Outlook 2007, conseguem aceder aos serviços de maneira segura e encriptada sem receber um aviso que o certificado não é válido.

É preciso não esquecer que podem ser utilizados vários nomes para aceder aos serviços, como por exemplo:

  • https://CAS01/owa
  • https://CAS01.FQDN.name/owa
  • https://CASIntranetName/owa
  • https://autodiscover.emaildomain.com

Todos estes nomes podem ser incluídos num único certificado, através da propriedade Subject Alternative Name (SAN).

Para gerar este Certificate Signing Request (CSR) com múltiplos domínios, será necessário utilizar o Exchange Management Shell, correndo o seguinte comando:

New-ExchangeCertificate -generaterequest -subjectname 
"dc=com,dc=contoso,o=Contoso Corporation,
cn=exchange.contoso.com" -domainname exchange.contoso.com,
CAS01,CAS01.exchange.corp.constoso.com,
autodiscover.contoso.com -PrivateKeyExportable $true
-path c:\certrequest_cas01.txt

Este comando irá gerar um ficheiro no formato PKCS#10 com o pedido de certificado.

Se acaha que isto é muito complicado e prefere uma maneira mais gráfica, a digicert disponibilizou este New-ExchangeCertificate Command Generator.

Links relacionados:


24 de novembro de 2007

Windows Essential Business Server

Windows Essential Business Server Editions

Lembram-se do Centro? Pois bem, o produto foi recentemente baptizado com o que será o seu nome definitivo: Windows Essentials Business Server.

Este produto destina-se a empresas que tenham até 300 utilizadores (encaixa que nem uma luva no mercado Português) e é composto pelo seguinte software da Microsoft:

  • Windows Server 2008
  • Exchange Server 2007
  • System Center Essentials
  • Forefront Security for Exchange
  • A próxima versão do ISA
  • SQL Server 2008

Links relacionados:

22 de novembro de 2007

Exchange Server 2007 Design and Architecture at Microsoft

Mais 2 grandes documentos da colecção "How Microsoft Does IT": Exchange Server 2007 Design and Architecture at Microsoft.

Overview
Ever wondered how a large enterprise plans and implements design and architecture of its next generation of messaging system? View this content to find out how engineers from the Microsoft IT messaging team will uncover the details on how Exchange 2007 infrastructure was introduced and fully deployed in a 120,000+ mailbox production environment. Topics will include: messaging topology design, hardware planning for various Exchange server roles, Client Access Server and Mobility scenarios, Transport architecture, Mailbox server and storage designs, backup, restore and high availability strategies.