exchange 2007 overview and sp1 additions

Upload: soumya-ganguly

Post on 09-Apr-2018

220 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    1/44

    niel Petri MCSE, MCT, MVP (Server System Exchange)icrosoft Infrastructure and Information Security [email protected]

    www.petri.co.il

    http://www.petri.co.il/http://www.petri.co.il/
  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    2/44

    Product Design Goals De-Emphasized and Discontinued Features

    New Features in Exchange Server 2007

    Exchange Server 2007 Architecture

    High Availability Improvements

    Hotfixes, Rollups and Service Packs

    Links

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    3/44

    Design goals for Exchange Server 2007are to:

    Design goals for Exchange Server 2007are to:

    Increase server capacity

    Improve Exchange Server availability

    Enhance server security

    Simplify deployment andadministration

    Make e-mail available anywhereUnify messaging services

    Large Mailbox Support

    Increase server capacity

    Improve Exchange Server availability

    Enhance server security

    Simplify deployment andadministration

    Make e-mail available anywhere

    Unify messaging services

    Large Mailbox Support

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    4/44

    Features

    De-emphasized

    Public folders PF GUI management isback in SP1

    CDOExWebDAV

    ExOLEDB

    Store events

    Streaming Backup

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    5/44

    FeaturesDiscontinued Administrative Groups

    Routing Groups

    AD Users & Computers snap-inintegration

    Active/Active Clustering

    Co-existence with Exchange Server 5.5

    Direct upgrade from Exchange Server 5.5

    In-place upgrade from Exchange2000/2003

    Outlook Web Access to public folders PFweb access is back in SP1 OWA

    Outlook Mobile Access

    IMAP and NNTP access to public folders

    Interoperability with X.400 messaging

    systemsCa abilit to ex ort mailboxes to PST

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    6/44

    New Features for MessagingAdministrators

    New Management Options

    New Features for Server Scalability New Features for Availability New Features for Messaging Security New Features for Messaging Policy

    Compliance New Features for Exchange Server

    Users

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    7/44

    Exchange Server 2007 provides two newmanagement tools:Exchange Server 2007 provides two newmanagement tools:Exchange Management Console

    Redesigned GUI

    Exchange Management Shell (known asPowerShell)

    Simplified command-line and scripting tool

    Exchange Management Console

    Redesigned GUI

    Exchange Management Shell (known asPowerShell)

    Simplified command-line and scripting tool

    Other new administrative features include:Other new administrative features include:

    Autodiscover

    Server role-based architecture

    Autodiscover

    Server role-based architecture

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    8/44

    New in SP1:New in SP1:

    Native IPV6 support

    Public folder configuration from ESM

    POP and IMAP configuration from ESM

    SendAs permission configuration

    Delegation wizard scenarios

    Delegate management

    Folder permission management

    Ability to export mailboxes to PST files

    Native IPV6 support

    Public folder configuration from ESM

    POP and IMAP configuration from ESM

    SendAs permission configuration

    Delegation wizard scenarios

    Delegate management

    Folder permission management

    Ability to export mailboxes to PST files

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    9/44

    Actionpane

    Actionpane

    Resultspane

    Resultspane

    WorkpaneWorkpane

    Consoletree

    Consoletree

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    10/44

    Manage settingsfor the entireorganization

    Manage settingsfor the entireorganization

    Manage settings

    for specific servers

    Manage settings

    for specific servers

    Manage settingsfor recipientobjects

    Manage settingsfor recipientobjects

    Opentroubleshootingand analysis tools

    Opentroubleshootingand analysis tools

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    11/44

    The Exchange Management Shell providesacommand-line interface based on WindowsPowerShell for administering Exchange

    Server 2007

    The Exchange Management Shell providesacommand-line interface based on WindowsPowerShell for administering Exchange

    Server 2007The Exchange Management Shell can:The Exchange Management Shell can:Automate and streamline the performanceofrepetitive tasks

    Replace long and complicated VBScriptscripts

    Automate and streamline the performanceofrepetitive tasks

    Replace long and complicated VBScriptscripts

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    12/44

    Windows PowerShell is:Windows PowerShell is:A scripting and command-line technology

    Directly accessible through a commandshell, msh.exe

    Used by GUI tools

    A scripting and command-line technology

    Directly accessible through a commandshell, msh.exe

    Used by GUI tools

    Windows PowerShell features include:Windows PowerShell features include:

    Commands

    AliasesVariables

    Pipelining

    Commands

    AliasesVariables

    Pipelining

    Scripting support

    Access to cmd.execommands

    Signed scripts

    Scripting support

    Access to cmd.execommands

    Signed scripts

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    13/44

    Verb Noun Parameters Example

    Get User Get-UserGet User -Identity

    -ExternalEmailAddress

    Enable-mailuser Identity

    Tom ExternalEmailAddress

    [email protected]

    Exchange Management Shell commands usethesame syntax

    Exchange Management Shell commands usethesame syntax

    Commands can be pipelined to other commands:Commands can be pipelined to other commands:

    get-user | sort-object name

    get-user | where-object {$_.name -ilike "a*" } | sort-object name

    get-user | sort-object name

    get-user | where-object {$_.name -ilike "a*" } | sort-object name

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    14/44

    Get-User Filter{(RecipientType eq user) and (City eqBrisbane)} | Enable-Mailbox Database SYD-DC1\MailboxDatabase WhatIf

    Get-User Filter{(RecipientType eq user) and (City eqBrisbane)} | Enable-Mailbox Database SYD-DC1\MailboxDatabase WhatIf

    get-user | where-object {$_.distinguishedname ilike*ou=sales,dc=tailspintoys,dc=com} | enable-mailbox database PER-EX2\mailbox database

    get-user | where-object {$_.distinguishedname ilike*ou=sales,dc=tailspintoys,dc=com} | enable-mailbox database PER-EX2\mailbox database

    Get-DistributionGroup RemoteUsers |Get-DistributionGroupMember |

    Set-Mailbox MaxReceiveSize 1024000

    Get-DistributionGroup RemoteUsers |Get-DistributionGroupMember |

    Set-Mailbox MaxReceiveSize 1024000

    Get-StorageGroup | where { $_.Name imatch temp } |Remove-StorageGroup confirmGet-StorageGroup | where { $_.Name imatch temp } |Remove-StorageGroup confirm

    Get-Mailbox server PER-DC1 | move-mailbox targetDatabase PER-EX2\mailbox storeGet-Mailbox server PER-DC1 | move-mailbox targetDatabase PER-EX2\mailbox store

    Get-Message | where { $_.FromAddress -ilike "Tom*" } |remove-messageGet-Message | where { $_.FromAddress -ilike "Tom*" } |remove-message

    Get-StorageGroupCopyStatusGet-StorageGroupCopyStatus

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    15/44

    Production versions of Exchange Server2007 run only on 64-bit operating systemsbecause:

    Production versions of Exchange Server2007 run only on 64-bit operating systemsbecause:

    32-bit operating systems:

    Are limited by the memory addressspace

    Create a disk I/O performancebottleneck

    32-bit operating systems:

    Are limited by the memory addressspace

    Create a disk I/O performancebottleneck

    64-bit operating systems:

    Can address up to 16 exabytes ofmemory

    Can decrease disk I/O by up to 75%

    64-bit operating systems:

    Can address up to 16 exabytes ofmemory

    Can decrease disk I/O by up to 75%

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    16/44

    Do we need the 32-bit version?Do we need the 32-bit version?32-bit version of Exchange 2007 isprovided for testing and trainingenvironments only

    SP1 RTM will also be available in 32-bitThe 32-bit version is good to havearound even if you dont plan to installit

    You can use it to install the ExchangeManagement Tools on your existing 32-bitmanagement workstations (XP Pro SP2,Windows Server 2003 and above machines,but NOT on Vista)

    32-bit version of Exchange 2007 isprovided for testing and trainingenvironments only

    SP1 RTM will also be available in 32-bitThe 32-bit version is good to havearound even if you dont plan to installit

    You can use it to install the ExchangeManagement Tools on your existing 32-bitmanagement workstations (XP Pro SP2,Windows Server 2003 and above machines,

    but NOT on Vista)

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    17/44

    Windows Server 2003 SP1 or higher

    Intel (or AMD) 64-bit CPU (but notItanium)

    2GB of RAM (plus 5MB of RAM per

    mailbox)At least 1.2 GB of available disk space

    Windows Server 2003 SP1 or higherActive Directory

    Microsoft .NET Framework Version 2.0Microsoft Windows PowerShell

    Microsoft Management Console (MMC)3.0

    KB904639 and KB918980

    Windows Server 2003 SP1 or higher

    Intel (or AMD) 64-bit CPU (but notItanium)

    2GB of RAM (plus 5MB of RAM permailbox)

    At least 1.2 GB of available disk space

    Windows Server 2003 SP1 or higherActive Directory

    Microsoft .NET Framework Version 2.0Microsoft Windows PowerShell

    Microsoft Management Console (MMC)3.0

    KB904639 and KB918980

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    18/44

    Exchange Server 2007 provides:

    The replica storage group can be used for

    backup

    Exchange Server 2007 provides:

    The replica storage group can be used for

    backup

    Local Continuous Replication tomaintain two copies of a storage groupon the same server

    Cluster Continuous Replication to

    maintain two copies of a storage groupon multiple servers

    In SP1 - Standby ContinuousReplication (SCR)

    Local Continuous Replication tomaintain two copies of a storage groupon the same server

    Cluster Continuous Replication to

    maintain two copies of a storage groupon multiple servers

    In SP1 - Standby ContinuousReplication (SCR)

    Deploy multiple servers in each non-Mailbox server role to provideredundancy

    Deploy multiple servers in each non-Mailbox server role to provideredundancy

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    19/44

    Exchange Server 2007 provides:Exchange Server 2007 provides:Server role base virus filtering

    Forefront Security for Exchange Server

    Spam filtering, including:

    Connection filtering, sender filtering,Sender ID filteringand recipient filtering

    Automatic updating of content filters

    Aggregation of Outlook Safe Senders

    lists Sender reputation filtering

    In SP1 S/MIME is back in OWA!

    Server role base virus filtering

    Forefront Security for Exchange Server

    Spam filtering, including:

    Connection filtering, sender filtering,Sender ID filteringand recipient filtering

    Automatic updating of content filters

    Aggregation of Outlook Safe Senders

    lists Sender reputation filtering

    In SP1 S/MIME is back in OWA!

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    20/44

    Exchange Server 2007 helps enforce policycompliance by:Exchange Server 2007 helps enforce policycompliance by:Providing transport rules to apply policies

    to messages in transitMessaging Records Management rules toapply policies to messages in usermailboxes

    Multi-mailbox search capabilitiesMessage journaling to a WindowsSharePointServices list

    Providing transport rules to apply policies

    to messages in transitMessaging Records Management rules toapply policies to messages in usermailboxes

    Multi-mailbox search capabilitiesMessage journaling to a WindowsSharePointServices list

    Messaging policy compliance is required byboth government regulations and security andbusiness rules

    Messaging policy compliance is required byboth government regulations and security andbusiness rules

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    21/44

    Exchange Server 2007 provides:Exchange Server 2007 provides:Outlook Web Access enhancements

    Document access on network shares orSharePoint sites

    No need to refresh to read new emailBetter searches in GAL

    Unified Messaging

    Out-of-Office Assistant enhancements

    New Calendar functionality

    Scheduling Assistant

    Availability Service

    Resource Booking Attendant

    Improved mobile access to e-mail

    Outlook Web Access enhancements

    Document access on network shares orSharePoint sites

    No need to refresh to read new emailBetter searches in GAL

    Unified Messaging

    Out-of-Office Assistant enhancements

    New Calendar functionality

    Scheduling Assistant

    Availability Service

    Resource Booking Attendant

    Improved mobile access to e-mail

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    22/44

    In SP1:In SP1:

    Month view

    Public Folder Web Access

    More languages for spell checking

    Personal distribution lists, support for viewingOffice 2007 file formats as HTML

    Deleted items recovery from OWA

    S/MIME in OWA

    Month view

    Public Folder Web Access

    More languages for spell checking

    Personal distribution lists, support for viewingOffice 2007 file formats as HTML

    Deleted items recovery from OWA

    S/MIME in OWA

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    23/44

    Server Roles Active Directory Forest Topologies High Availability Improvements

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    24/44

    In Exchange Server 2007, servers areinstalled with specific functional roles:In Exchange Server 2007, servers areinstalled with specific functional roles:

    Edge Transport server role

    Client Access server roleHub Transport server role

    Mailbox server role

    Unified Messaging server role

    Edge Transport server role

    Client Access server roleHub Transport server role

    Mailbox server role

    Unified Messaging server role

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    25/44

    Simplified deployment and

    administrationEnhanced scalability

    Improved security

    Simplified deployment and

    administrationEnhanced scalability

    Improved security

    Mailbox serverrole

    Mailbox serverrole

    UnifiedMessagingserver role

    UnifiedMessagingserver role

    Edge Transportserver role

    Edge Transportserver role

    Client Access serverrole

    Client Access serverrole

    HubTransportserver role

    HubTransportserver role

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    26/44

    The Edge Transport server role provides:The Edge Transport server role provides:

    Internet message delivery

    Antivirus and anti-spam protection

    Edge transport rules

    Address rewriting

    Internet message delivery

    Antivirus and anti-spam protection

    Edge transport rules

    Address rewriting

    The Edge Transport server:The Edge Transport server:Cannot be deployed with any other server

    roleCannot not be a member of an ActiveDirectory domain

    Should be deployed in a perimeter network

    Cannot be deployed with any other server

    roleCannot not be a member of an ActiveDirectory domain

    Should be deployed in a perimeter network

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    27/44

    The Client Access server role provides:The Client Access server role provides:Access to mailboxes for non-MAPI clients

    Services such as Autodiscover and Webservices

    Access to mailboxes for non-MAPI clients

    Services such as Autodiscover and Webservices

    The Client Access server:The Client Access server:Must be deployed in each Active Directorysite that has a Mailbox server

    Requires a fast network connection toMailbox servers

    Should be deployed on the internalnetwork

    Must be deployed in each Active Directorysite that has a Mailbox server

    Requires a fast network connection toMailbox servers

    Should be deployed on the internalnetwork

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    28/44

    The Hub Transport server role provides:The Hub Transport server role provides:

    Message routing

    Optional antivirus and anti-spam protection

    Messaging policy compliance

    Message routing

    Optional antivirus and anti-spam protection

    Messaging policy compliance

    The Hub Transport server:The Hub Transport server:Requires a fast network connection toMailbox servers and global catalog servers

    Requires SMTP connectivity to other HubTransport servers and to the EdgeTransport server

    Is required in every site with a Mailboxserver

    Requires a fast network connection toMailbox servers and global catalog servers

    Requires SMTP connectivity to other HubTransport servers and to the EdgeTransport server

    Is required in every site with a Mailboxserver

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    29/44

    The Mailbox server role:The Mailbox server role:Hosts mailboxes and public folders

    Enables high availability throughclustering, LCR,and CCR

    Does not transfer messages betweenmailboxes

    Hosts mailboxes and public folders

    Enables high availability throughclustering, LCR,and CCR

    Does not transfer messages betweenmailboxes

    The Mailbox server:The Mailbox server:Should not be directly accessible from theInternet

    Must be a member of an Active Directorydomain

    Should be connected to a fast storagedevice such asa SAN

    Should not be directly accessible from theInternet

    Must be a member of an Active Directorydomain

    Should be connected to a fast storagedevice such asa SAN

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    30/44

    The Unified Messaging server role provides:The Unified Messaging server role provides:Call answering

    Fax receiving

    Subscriber access

    Auto attendant

    Call answering

    Fax receiving

    Subscriber access

    Auto attendant

    The Unified Messaging server:The Unified Messaging server:Should not be directly accessible from theInternet

    Requires access to Mailbox servers, HubTransport servers, and global catalogservers

    Requires access to an IP-PBX or VoIPgateway device

    Should not be directly accessible from theInternet

    Requires access to Mailbox servers, HubTransport servers, and global catalogservers

    Requires access to an IP-PBX or VoIPgateway device

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    31/44

    Hub Transportserver role

    Hub Transportserver role

    Mailboxserver role

    Mailboxserver role

    Client Accessserver role

    Client Accessserver role

    Edge Transportserver role

    Edge Transportserver role

    1

    23

    4

    5

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    32/44

    A single-foresttopology

    A single-foresttopology

    A multiple-foresttopology

    A multiple-foresttopology

    A resource-foresttopology

    A resource-foresttopology

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    33/44

    Store Enhancements What is Local Continuous Replication? What is Clustered Continuous

    Replication? What is Standby Continuous

    Replication in Exchange Server 2007Service Pack 1?

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    34/44

    Improved performance with:Increased inbox size

    Reduced rate of I/O to the disks

    Pages are now 8 KB instead of 4 KB

    Improved reliability with:LCR, CCR, SCR (in SP1)

    Simplified database structure

    Up to 50 stores per server

    Log names lengthened (more than 2billion name options)

    Log files reduced to 1 MB instead of 5MB

    Improved performance with:Increased inbox size

    Reduced rate of I/O to the disks

    Pages are now 8 KB instead of 4 KB

    Improved reliability with:LCR, CCR, SCR (in SP1)

    Simplified database structure

    Up to 50 stores per server

    Log names lengthened (more than 2billion name options)

    Log files reduced to 1 MB instead of 5MB

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    35/44

    One machine

    Two copies

    Replay

    Data validation 1 datacenter

    Easy configurationLogs

    DBs

    Logs

    DBs

    Manual activation

    Resourcerequirements

    Backup options

    Configurations

    Backup TCO

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    36/44

    Two copies Clustered Full redundancy Replay Data validation 1 / 2 datacenters Symmetric

    failover Can be backed up

    QQ

    Q

    DBs

    DB

    s

    Logs

    Logs

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    37/44

    A source can have multipletargets

    Delayed Replication

    Cannot be backed up

    Can be combined with CCRto replicate storage groupslocally in a primarydatacenter and remotely ina secondary or backupdatacenter (using SCR for

    site resilience)

    DBs

    DB

    s

    Logs

    Logs

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    38/44

    In Exchange Server 2007, hotfixes will becalled Update Rollups:In Exchange Server 2007, hotfixes will becalled Update Rollups:

    Rollups" will be delivered once everysix to eight weeks

    Rollups are cumulative and willcontain all hotfixes that have beenreleased since the last major milestone(read as RTM or last service pack)

    Easier deployment for administrators

    Easier troubleshooting for PSS

    Latest Rollup is Update Rollup 2 forExchange Server 2007 (KB935490) Rollup 3 will be available in July

    Rollups" will be delivered once everysix to eight weeks

    Rollups are cumulative and willcontain all hotfixes that have beenreleased since the last major milestone(read as RTM or last service pack)

    Easier deployment for administrators

    Easier troubleshooting for PSS

    Latest Rollup is Update Rollup 2 forExchange Server 2007 (KB935490) Rollup 3 will be available in July

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    39/44

    Exchange Server 2007 SP1 will RTM alongwith Windows Server 2008, give or take acouple of months

    Exchange Server 2007 SP1 will RTM along

    with Windows Server 2008, give or take acouple of months

    Many organizations will wait withExchange 2007 deployment till SP1 isout

    Issues around introduction of Windows

    Server 2008 Exchange 2007 does notrun on Windows Server 2008 SP1 willfix this

    SP1 Beta is available from MSDN (64-

    bit only) or TechNet for subscribers (32and 64-bit)

    Many organizations will wait withExchange 2007 deployment till SP1 isout

    Issues around introduction of Windows

    Server 2008 Exchange 2007 does notrun on Windows Server 2008 SP1 willfix this

    SP1 Beta is available from MSDN (64-

    bit only) or TechNet for subscribers (32and 64-bit)

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    40/44

    Same as for initial Exchange Server2007

    KB931836 (DST changes)

    Currently download is 718 MB

    Read the SP1 Release Notes beforedeploying!

    Dont forget SP1 is still in Beta phase,so no production servers please!

    Beta 2 will be available in a month orso

    Same as for initial Exchange Server

    2007

    KB931836 (DST changes)

    Currently download is 718 MB

    Read the SP1 Release Notes beforedeploying!

    Dont forget SP1 is still in Beta phase,so no production servers please!

    Beta 2 will be available in a month orso

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    41/44

    Microsoft Exchange Server 2007 Learning Portal: http://www.microsoft.com/learning/exchange2007/default.msp

    Exchange Server TechCenter: Documentation, downloads,and additional resources:

    http://technet.microsoft.com/en-us/exchange/default.aspx

    Microsoft Exchange Server 2007 SP1 Release Notes:

    http://www.microsoft.com/downloads/details.aspx?FamilyID=5

    Update Rollup 2 for Exchange Server 2007 (KB935490):

    http://www.microsoft.com/downloads/details.aspx?FamilyId=3

    Exchange Server 2007 - Management Tools (32-Bit):

    http://www.microsoft.com/downloads/details.aspx?familyid=6B

    http://www.microsoft.com/learning/exchange2007/default.mspxhttp://technet.microsoft.com/en-us/exchange/default.aspxhttp://www.microsoft.com/downloads/details.aspx?FamilyID=5770bd59-376e-42ec-b940-be6225cd97ff&DisplayLang=enhttp://www.microsoft.com/downloads/details.aspx?FamilyId=356874EF-C9C0-4842-99F0-E449E9940358&displaylang=enhttp://www.microsoft.com/downloads/details.aspx?familyid=6BE38633-7248-4532-929B-76E9C677E802&displaylang=enhttp://www.microsoft.com/downloads/details.aspx?familyid=6BE38633-7248-4532-929B-76E9C677E802&displaylang=enhttp://www.microsoft.com/downloads/details.aspx?FamilyId=356874EF-C9C0-4842-99F0-E449E9940358&displaylang=enhttp://www.microsoft.com/downloads/details.aspx?FamilyID=5770bd59-376e-42ec-b940-be6225cd97ff&DisplayLang=enhttp://technet.microsoft.com/en-us/exchange/default.aspxhttp://www.microsoft.com/learning/exchange2007/default.mspx
  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    42/44

    Exchange Server 2007 - Evaluation Software:

    http://www.microsoft.com/downloads/details.aspx?familyid=4 Run IT on a Virtual Hard Disk (download VHD images):

    http://www.microsoft.com/technet/try/vhd/default.mspx

    Microsoft Exchange Server 2007 Documentation Center:

    http://technet.microsoft.com/en-us/library/bb124558.aspx

    TechNet Webcast: Installing Exchange Server 2007 VirtualLab:

    http://msevents.microsoft.com/CUI/WebCastEventDetails.asp

    TechNet Webcast: Exchange Server 2007 Overview:

    http://msevents.microsoft.com/cui/WebCastEventDetails.aspx

    TechNet Webcast: Guided Hands-On: Using the Exchange

    Server 2007 Management Console and Shell:

    http://msevents.microsoft.com/cui/WebCastEventDetails.aspx

    http://www.microsoft.com/downloads/details.aspx?familyid=444C259E-605F-4A82-96D5-A2F448C9D4FF&displaylang=enhttp://www.microsoft.com/technet/try/vhd/default.mspxhttp://technet.microsoft.com/en-us/library/bb124558.aspxhttp://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?culture=en-US&EventID=1032306522http://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032318514&CountryCode=UShttp://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032304350&CountryCode=UShttp://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032304350&CountryCode=UShttp://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032318514&CountryCode=UShttp://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?culture=en-US&EventID=1032306522http://technet.microsoft.com/en-us/library/bb124558.aspxhttp://www.microsoft.com/technet/try/vhd/default.mspxhttp://www.microsoft.com/downloads/details.aspx?familyid=444C259E-605F-4A82-96D5-A2F448C9D4FF&displaylang=en
  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    43/44

    3938b - Updating Your Skills from Exchange2000-2003 to Microsoft Exchange Server 2007 4days

    5047a - Introduction to Installing and Managing

    Microsoft Exchange Server 2007 3 days 5049a - Managing Messaging Security Using

    Microsoft Exchange Server 2007 1 day 5050a - Recovering Messaging Servers and

    Databases Using Microsoft Exchange Server 2007

    1 day 5051a - Monitoring and Trouble Shooting

    Microsoft Exchange Server 2007 2 days

  • 8/7/2019 Exchange 2007 Overview and SP1 Additions

    44/44