Jump to content

Catastrophic Failure

Members
  • Posts

    562
  • Joined

  • Last visited

Blog Entries posted by Catastrophic Failure

  1. Catastrophic Failure
    The most of you start wander “Where is the EMC (Exchange Management
    Console) in Exchange Server 2013?” Well, some things remain the same as login
    in the new Exchange Server 2013, and other things change (this is the
    technology). Let’s see together which are the things are new in Exchange Server
    2013, one of those is the EMC (Exchange Management Console).
    Where
    is the EMC (Exchange Management Console) and how where we can find it?
    Almost everything in new Exchange 2013 is web-based management console, not EMC
    (Exchange Management Console) but EAC (Exchange Administration Center), that
    allows for ease of use and is optimized for on-premises, online, or hybrid
    Exchange deployments. The EAC replaces the Exchange Management Console (EMC)
    and the Exchange Control Panel (ECP), which were the two interfaces that were
    used to manage Exchange Server 2010. One of the advantages of having the
    web-based EAC is that you can partition access from the Internet/Intranet from
    within the ECP IIS virtual directory to allow or disallow management features.
    This allows you to permit or deny access to users trying to access the EAC from
    the Internet outside of your organizational environment, while still allowing
    access to an end-user’s Outlook Web App Options.
    How can I login to EAC?
    If we navigate to IE (Internet Explorer) and type http://server
    FQDN/ecp (in my scenario is https://e2013.cloud.com/ecp

    and voila, you are now logged in the new EAC old EMC console..

    Supported browsers
    For the best experience with the EAC, use one of the operating system and browser combinations labeled “Premium”.
    Premium: All functional features are well-supported and fully tested. Supported: Has same functional feature support as premium; however, supported browsers will be missing features that the browser and operating system combination doesn’t support. Unsupported: The browser and operating system isn’t supported or tested. Be in tune...
  2. Catastrophic Failure
    After you install Internet Explorer 9 on a computer that has Exchange 2010 or Exchange 2007 management tools installed, you might run into a situation where closing the Exchange Management Console (EMC) results in the following error:


    “You must close all dialog boxes before you can close Exchange Management Console”

    This might happen even if there are no property pages left opened that you can see. Please note here that not all of our customers who installed IE9 on a computer with Exchange management tools (server or workstation) have run into this problem.
    Are there any workarounds?
    As it stands right now, we are not aware of a reliable workaround for this problem. Terminating the EMC using the Task Manager (or possibly a command or script) does not have adverse effects on management tools functionality, but is clearly a non-optimal solution.
    What are we doing to address this?
    The EMC is implemented as a Microsoft Management Console snap-in. We are working closely with both MMC and Internet Explorer teams to find a solution to this problem. Due to the complex nature of several products involved and the interoperability between them, identifying the root cause was not simple; things are still in process and we do not have a firm solution or a date to share with you yet. We do, however, want to say that we are very aware of this issue and several teams are collaborating and working to get this addressed. Once more details are available, we will be sure to share them here.
    Source: MSExchange Team
  3. Catastrophic Failure
    If you find the inner workings of Exchange data backups using Volume Shadown Copy (VSS) a bit mystifying take comfort in not being alone. Administrators may ask, “What’s all the “freezing” and “thawing” I’m seeing in my event logs? What is the Exchange VSS Writer really, and what is it doing to my databases? How does it create a snapshot of a 135GB database in less than 60 seconds?”
    If you ever asked these questions but only felt more confused with the answers, here’s a guide to clear some of that up. To understand how a VSS backup of Exchange works it’s critical to understand the basics of VSS itself. There is some excellent documentation on TechNet and MSDN on this, as well as the Windows Server Core Team blog, “Ask the Core Team.” My esteemed colleague Randy Monteleone sums up the basics of VSS very nicely early in his post, while also providing links (repeated here) to some good TechNet primers on VSS:
    How To: VSS Tracing – Randy Monteleone
    http://blogs.technet.com/b/askcore/archive/2012/04/29/how-to-vss-tracing.aspx
    How Volume Shadow Copy Service Works
    http://technet.microsoft.com/en-us/library/cc785914(WS.10).aspx
    Volume Shadow Copy Service
    http://technet.microsoft.com/en-us/library/ee923636.aspx
    If you’re already familiar with at least the basics of VSS, then look forward to Part 2 in this series, where we will break down the events that occur in a VSS Exchange backup, and how Exchange logs them in the application event log.
    If you need a quick primer or refresher on VSS basics and the Exchange Writer I’ve condensed them into some visual points below to complement the references above.
    Snapshots
    Bear in mind that VSS solutions for Exchange, and for all applications, vary greatly between different hardware and software configurations. There are clone and COW snapshots, hardware and software solutions, just a very wide variety of technologies based on the core VSS subsystem. For the purposes of understanding Exchange backups we’re only going to illustrate one specific type of solution out of the multitude. Detailed below is what’s called “copy-on-write”, or “COW” snapshots.
    In a COW snapshot-based VSS backup of Exchange we have the creation of snapshots of the disks where Exchange data is hosted. No matter what is getting backed up, even if it’s a single database file and a few logs, VSS creates a snapshot of the entire disk where any data is stored. If the data resides across multiple disks, such as when an Exchange database is on one disk, and the logs are on another, VSS will create snapshots of any and all of those disks.
    So what is a “snapshot”? A volume snapshot is an area of space inside what’s called “shadow storage”, which is itself a typically small area of space on the disk located in its System Volume Information folder.
    After a disk snapshot is created a change to any data block from that time forward cannot get written until a copy of that block’s data before the change (as it was when the snapshot was created) gets written to the differencing area in shadow storage. In this way the data on the disk at the time the snapshot was created is preserved, block by block, in the shadow storage area. The snapshot data is then available either from the original disk, if the data blocks requested haven’t changed, or from the differencing area if they have. The fundamentals of this are illustrated below:
    Disk E: has a snapshot created at 1PM:

    A minute later one of the blocks gets written to, but not before the data as it was at 1PM gets preserved in the differencing area:

    As the actual disk changes the data as it was at 1PM gets written into shadow storage, preserving a record of the disk as it was in that moment:

    The following step:

    In the figure above a backup server requests data from the snapshot of blocks 2 and 53. Block 53 from 1PM is preserved in the snapshot, so it’s copied directly from shadow storage. Block 2 is unchanged since 1PM, so it is copied via the VSS driver VOLSNAP.SYS, which operates much like a filter driver underneath the NTFS.SYS file system driver. By working in the IRP stack (the part of kernel memory that manages disk I/O) underneath the file system it can read blocks of data without NTFS objecting that a file is in use. VOLSNAP.SYS is also responsible for ensuring blocks are copied over to shadow storage if a write is requested to them, hence the name “Copy On Write”. Here is more about VOLSNAP.SYS from Tim McMichael:
    Exchange / VSS / and differential block size…
    http://blogs.technet.com/b/timmcmic/archive/2011/07/12/exchange-vss-and-differential-block-size.aspx
    Now that we’ve got the basics of a COW snapshot down let’s look at how it works with Exchange, along with some other major concepts:
    Microsoft Exchange Writer
    So we know that any disk that stores Exchange data gets a snapshot created of it by VSS. How exactly, though, does a backup application find out which disks those are? Oftentimes an administrator selects databases for backup without specifying anything about what disks their data files are stored in. So something is required to provide the information about where the data files are, and therefore what disks VSS needs to create snapshots of. This information also tells a backup application, also known as a VSS requestor, what specific data files should be copied out of the snapshots for preservation on backup media, as we don’t want to copy out anything from the disk we don't need.
    The mechanism at work here is the Microsoft Exchange VSS Writer. Like any application’s VSS writer (there are many, just run VSSADMIN LIST WRITERS to see them) its first job is to tell the backup application about the data needed for backup, especially the EDB file, logs, and checkpoint file for each database requested. The information about these specific Exchange data files is known as writer metadata.

    (click thumbnail for full size version)
    In the figure above we see the initial steps of an Exchange backup. The Exchange Writer tells the backup server (the requestor) that there is a database located in a folder on volume E:, and that transaction logs for that database are in a folder on D:. Based on that information the backup application will request snapshots of the D: and E: volumes when the job progresses.
    The Exchange VSS Writer serves another critical role besides providing metadata to VSS requestors. It also has the job of stopping writes to the databases and logs on disk, or “freezing” them, for the time it takes to create the necessary snapshots. A COW snapshot typically takes a small amount of time to create, as all it consists of initially is the designation of an area in shadow storage for blocks to be preserved in when they change on the actual disk. Despite this relatively quick operation it can still take up to a minute, which is plenty of time for blocks of data to change on a disk between the start and the end of its snapshot creation process. If blocks of data change but don't have the originals preserved from the exact time the snapshot creation begins those blocks may become inconsistent with other snapshot data, especially between logs, database, and checkpoint files. Hence, the Exchange Writer prevents the Information Store Service, or the MS Exchange Replication Service, from writing what’s in RAM to the frozen database files. In the case of the Information Store Service, the current transaction log file (Exx.log) gets rolled and closed out before the Exchange Writer allows VSS to take the snapshot. This ensures nothing changes in the file data between the beginning of the snapshot and the completion, at which point the databases are “thawed”. When databases are thawed write I/O held in RAM is allowed to go to disk again.
    Here's more information on how an application's VSS writer interacts with VSS with regards to freeze, thaws, and the time needed to get a snapshot completed:
    CVssWriter::OnFreeze method
    http://msdn.microsoft.com/en-us/library/windows/desktop/aa381563(v=vs.85).aspx
    The last major responsibility of the Exchange Writer is to tell the Information Store Service (MS Exchange Replication Service in the case of a passive copy backup) that the backup was completed and, if applicable, carry out post-backup tasks like log truncation, marking the database as no longer with a backup in progress, etc.
    In the part two and part three of this series we’ll look at a play-by-play breakdown of how the elements described above all come together in an Exchange backup, the application log events that get generated, and compare the process for a mounted database to that for a passive database copy.
    Thanks go out for the collaboration on the content in these posts to Michael Blanton, Tim McMichael, Randy Monteleone, Dave Vespa, and Tom Kern.
     
    Source: MSExchangeTeam
  4. Catastrophic Failure
    Για την υποστήριξη των Client εξωτερικά και για την συνύπαρξη τους με τον CAS 2010, χρειάζεται ένα καινούργιο certificate. Σαν best practice η Microsoft συνιστά την έκδοση ενός certificate, που θα υποστηρίζει «Subject Alternative Names». Το certificate αυτό το οποίο θα χρησιμοποιηθεί για τους εξωτερικούς clients και θα περιέχει το λιγότερο τρία SAN values (σημείωση ότι άλλα σενάρια ίσως χρειάζονται περισσότερα από τρία values):
    mail.contoso.com (your primary OWA/EAS/OA access URL) autodiscover.contoso.com legacy.contoso.com (your OWA/EAS namespace for legacy mailbox access) Εγκαταστήστε τον CAS server role και ρυθμίστε το per 2010 design:
    Κατά την διάρκεια της εγκατάστασης του CAS 2010 έχετε την επιλογή να πληκτρολογήσετε το external namespace που θα χρησιμοποιηθεί για το/τα virtual directories. Μπορείτε να εισάγετε το παρόν value και στα δύο «graphical user interface» ή να χρησιμοποιήσετε το command-line setup: Για graphical user interface setup εμπειρικά στον CAS 2010 καλείστε να ρυθμίσετε στο Client Access το external domain. Εάν χρησιμοποιήσετε για την εγκατάσταση το command line, μπορείτε να εκτελέσετε το «setup property /ExternalCASServerDomain» και να ορίσετε το domain name mail.contoso.com Εγκαταστήστε το RPC over HTTP proxy component, μπορείτε να το πραγματοποιήσετε μέσο Power Shell
    «ServerManagerCmd tool: ServerManagerCmd.exe -i RPC-over-HTTP-proxy» Διαμορφώστε τις ρυθμίσεις του OWA κατάλληλα (παράδειγμα: forms based authentication, basic authentication). Στην παρούσα περίπτωση θεωρούνται ότι είναι επιλεγμένες. Ρυθμίστε το Microsoft Exchange ActiveSync (EAS) authentication καταλλήλως (παράδειγμα: Basic, certificate authentication). Ενεργοποιήστε το Outlook Anywhere: Enable-OutlookAnywhere -Server: -ExternalHostName:mail.contoso.com - SSLOffloading $false Εάν επιλέξετε να μην ορίσετε το external domain name για τον CAS κατά την διάρκεια της εγκατάστασης, θα χρειαστεί να ενεργοποιήσετε το ακόλουθο ExternalURLs για να επιβεβαιώσετε ότι οι clients για το Autodiscover λειτουργούν σωστά:
    Offline Address Book: Set-OABVirtualDirectory \OAB* -ExternalURL https://mail.contoso.com/OAB Web Services: Set-WebServicesVirtualDirectory \EWS* -ExternalURL https://mail.contoso.com/ews/exchange.asmx ActiveSync: Set-ActiveSyncVirtualDirectory -Identity \Microsoft-Server-ActiveSync -ExternalURL https://mail.contoso.com/Microsoft-Server-ActiveSync Για να επιβεβαιώσετε ότι το Outlook Web Access λειτουργεί σωστά, θα χρειαστεί να ενεργοποιήσετε τα ακόλουθα URLs:
    Outlook Web Access: For environments without Exchange 2003: Set-OWAVirtualDirectory \OWA* -ExternalURL https://mail.contoso.com/OWA For environments with Exchange 2003 mailbox servers: Set-OWAVirtualDirectory \OWA* -ExternalURL https://mail.contoso.com/OWA -Exchange2003URL https://legacy.contoso.com/exchange Exchange Control Panel: Set-ECPVirtualDirectory \ECP* -ExternalURL https://mail.contoso.com/ECP Εγκαταστήστε το HT2010 και MBX2010 server roles.
    Μπορείτε να αλλάξετε την Offline Address Book και να ενεργοποιώντας web distribution στον CAS2010 εκτελώντας τα ακόλουθα βήματα: Για να μεταφέρετε την Offline Address Book:
    Move-OfflineAddressBook "Default Offline Address List" -Server Για να προσθέσετε τον CAS2010 σαν web distribution point:
    $OABVDir=Get-OABVirtualDirectory -Server $OAB=Get-OfflineAddressBook "Default Offline Address List" $OAB.VirtualDirectories += $OABVdir.DistinguishedName Set-OfflineAddressBook "Default Offline Address List" -VirtualDirectories $OAB.VirtualDirectories Δημιουργήστε host record (legacy.contoso.com) στο external DNS infrastructure και συσχετίσετε το με τον E2003 ή με την υποδομή proxy.
    Θα ρυθμίσετε το External DNS και/ή το reverse proxy infrastructure publishing rules για το autodiscover.contoso.com namespace να δείχνει τον CAS2010.
    Εάν χρησιμοποιείτε ένα reverse proxy infrastructure, θα κάνετε publish το legacy namespace στον E2003 infrastructure έτσι ώστε να δείχνει τον E2003 και να είναι προσβάσιμο μέσο mail.contoso.com ή legacy.contoso.com namespaces (οι δύο αυτές ονομασίες είναι παραδείγματα).
    Σχεδιάστε το Internet protocol client downtime (Σημείωση: Το παράθυρο downtime θα πρέπει να είναι σχετικά μικρό – αρκετά για να πραγματοποιήσετε τις αλλαγές και επικυρώνει ότι όλα λειτουργούν όπως θέλετε) και προχωρήστε στα ακόλουθα βήματα:
    Θα κάνετε reconfigure το External DNS και/ή το reverse proxy publishing rules να έχουν το mail.contoso.com namespaces να δείχνει το CAS2010. Οι χρήστες με mailboxes στον Exchange 2003 που προσπαθούν να χρησιμοποιήσουν το Exchange ActiveSync μέσω του Exchange 2010 Client Access server θα λάβουν μήνυμα λάθους και θα είναι αδύνατον να συγχρονίσουν, εκτός εάν είναι ενεργοποιημένο το Windows authentication στο Microsoft-Server-ActiveSync virtual directory στον Exchange 2003. Το παρόν επιτρέπει στον Exchange 2010 Client Access Server και στον Exchange 2003 να επικοινωνήσουν χρησιμοποιώντας Kerberos authentication. Για να ενεργοποιήσετε το παρόν authentication στον Exchange 2003 χρειάζεστε:
    Να εγκαταστήσετε το http://support.microsoft.com/?kbid=937031 και έπειτα να χρησιμοποιήσετε το Exchange System Manager για να προσαρμόσετε τα authentication settings του ActiveSync virtual directory. «Επαναλάβετε τα παραπάνω για κάθε ένα Exchange 2003 mailbox server για τον οργανισμό σας» Ή, ρυθμίστε το msExchAuthenticationFlags attribute στο value 6 στο Microsoft-Server-ActiveSync object για την διαμόρφωση κάθε Exchange 2003 mailbox server. Ένα παράδειγμα διαμόρφωσης script υπάρχει εδώ: http://technet.microsoft.com/en-us/library/cc785437.aspx. Continue… (Part III-
  5. Catastrophic Failure
    These recordings are from the 3 day Office 365 JumpStart training that was delivered last month are now available on TechNet Edge.
    15 hours of content delivered by Office 365 Subject Matter Experts.

    • Office 365 Jump Start (01): Microsoft Office 365 Overview for IT Pros
    • Office 365 Jump Start (02): Deploying Clients for Office 365
    • Office 365 Jump Start (03): Microsoft Office 365 Administration & Automation Using Windows PowerShell™
    • Office 365 Jump Start (04): Microsoft Office 365 Identity and Access Solutions
    • Office 365 Jump Start (05): Microsoft Office 365 Directory Synchronization
    • Office 365 Jump Start (06): Exchange Online Overview for IT Pros
    • Office 365 Jump Start (07): Microsoft Exchange Online Administration
    • Office 365 Jump Start (08): Microsoft Staged Exchange Online Migration
    • Office 365 Jump Start (09): Hybrid Options with Exchange Server & Exchange Online
    • Office 365 Jump Start (10): Exchange Online Archiving & Compliance
    • Office 365 Jump Start (11): Lync Online Overview & Configuration for IT Pros
    • Office 365 Jump Start (12): SharePoint Online Overview
    • Office 365 Jump Start (13): SharePoint Online Administration
    • Office 365 Jump Start (14): SharePoint Online Extensibility & Customization
    • Office 365 Jump Start (15): Office 365 Deployment Overview
    • Link to course materials on Born to Learn

    Enjoy

  6. Catastrophic Failure
    Όπως είχαμε αναφέρει στις 16 Δεκεμβρίου 2010 η Microsoft έκανε released το cumulative update για το Outlook 2007 το οποίο μας δίνει την δυνατότητα πρόσβασης για το Exchange 2010's Archive mailbox. Στις 2 Φεβρουαρίου 2011 η ομάδα του MSExchange Team αναφέρει στο Post της:
    Λόγο προβλημάτων που δημιουργήθηκαν σχετικά με το Cumulative Update για το Office 2007, όπως την μη πρόσβαση των χρηστών στο archive mailbox τους. Η ομάδα του Outlook εργάζονται πάνω στο παρών θέμα για την επιδιόρθωση του. Το fix αυτό έχει δρομολογηθεί για τα τέλη Φεβρουαρίου 2011 «Cumulative Update for Office 2007». (Από το post του Φεβρουαρίου).
    Η ομάδα τουOffice όπως είχε υποσχεθεί έκανε released το Office 2007 Cumulative Update for February 2011, που περιλαμβάνει τα Outlook 2007 hotfix. Για περισσότερες πληροφορίες σχετικά με το fix KBA 2475891: Description of the Office Outlook 2007 hotfix package (Outlook-x-none.msp): February 22, 2011.
    Note: Office cumulative updates are packaged as separate hotfixes for each Office application. To request updates for other Office 2007 applications, see links for the application in Office 2007 Cumulative Update for February 2011.
    Source: Bharat Suneja

  7. Catastrophic Failure
    The Exchange Team is pleased to announce that in the second half of calendar year 2011 we will be releasing Exchange Server 2010 Service Pack 2 (SP2) to our customers. With SP2, the following new features and capabilities will be included:
    Outlook Web Access (OWA) Mini: A browse-only version of OWA designed for low bandwidth and resolution devices. Based on the existing Exchange 2010 SP1 OWA infrastructure, this feature provides a simple text based interface to navigate the user’s mailbox and access to the global address list from a plurality of mobile devices. Single Sign-on for Outlook Web Access: Providing the ability for users who have already authenticated with their directory credentials to not need to re-enter them again upon opening OWA. Hybrid Configuration Wizard: Organizations can choose to deploy a hybrid scenario where some mailboxes are on-premises and some are in Exchange Online with Microsoft Office 365. Hybrid deployments may be needed for migrations taking place over weeks, months or indefinite timeframes. This wizard helps simplify the configuration of Exchange sharing features, like: calendar and free/busy sharing, secure mailflow, mailbox moves, as well as online archive. Address Book Policies: Allows organizations to segment their address books into smaller scoped subsets of users providing a more refined user experience than the previous manual configuration approach. We also blogged about this new feature recently in GAL Segmentation, Exchange Server 2010 and Address Book Policies. Customer Requested Fixes: All fixes contained within update rollups released prior to Service Pack 2 will also be contained within SP2. Details of our regular Exchange 2010 release rhythm can be found in Exchange 2010 Servicing. In order to support these newly added features, there will be a requirement for customers to update their Active Directory schema. We’ve heard the feedback loud and clear from our customers on multiple occasions regarding delays that can be caused to deployment as a result of needing to update your schema and as such with the release of Exchange 2010 SP2 are communicating the required changes ahead of release in order to assist our customers with planning their upgrade path ahead of time.
    We hope these announcements come as welcome news to you. It is our custom to provide ongoing improvements to features, functionality and security of Exchange Server, based largely on customer feedback, and to provide continual innovation on an already great messaging product. We look forward to receiving your comments and announcing more detailed information as we continue to develop the features that will be included in SP2.
    Source: Kevin Allison
  8. Catastrophic Failure
    As we mention in Part1, Exchange Server 2013 has 2 server roles, Mailbox Server role and Client Access Server role. We have the option to install either single server role or both the roles on the same computer.
    In any case of installation role, CAS Role or both servers roles (CAS and Mailbox), Exchange Management Tools will be
    installed together.
    After you extract the Exchange-x64.exe file, start the exchange 2013 installation by click on the setup file available on the installation file. Below window appears up, check the option “Connect to the Internet and check for Updates” and click next to
    continue.

    On the Introduction page, read the information and click next to continue. If you plan
    to use to Deployment assistant click on the necessary option.

    Accept on the License Agreement page and click Next to continue

    On the Error Reporting Window, Click Yes and Click Next to continue

    Next step will automatically check for the required software if is installed in the Server, if any issue appear, it will prompt you to fix it. If no error click Next to Continue

    On the Server Role Selection Windows, if it is standalone installation select both the Mailbox and Client Access Server role and click Next to continue

    Installation Space and Location windows will allow an option to change the installation path, make necessary change or leave the default path and click Next

    Type the Exchange Organization name and click Next

    Malware Protection Setting, this option is new in Exchange 2013 which will by default scan all the emails, if you are using other option disable the option and click Next to continue

    If this Exchange 2013 server is an internet facing client access server then check the option and enter the internet domain name. If not leave it as it is and click Next to continue.

    On the Customer Experience Improvement Program, read the information, choose the required option and click Next to continue.

    Readiness check windows will check of the all the options prior to install the Exchange
    Server 2013. If everything is normal, then the installation will start.

    Once the readiness check is completed Exchange Server 2013 installation will happen. Once it is completed, click finish is complete the installation.

    Enjoy..
  9. Catastrophic Failure
    Με την εμφάνιση του Exchange 2010 παρουσιάστηκε η δυνατότητα archive, η οποία μας έδινε την δυνατότητα μεταφοράς του personal archive mailbox στην ίδια βάση με το user mailbox. Αυτό υπήρξε και ένα από τα ποιο σημαντικά limitations της έκδοσης Exchange 2010 RTM. Με τον ερχομό του SP1, το limitations του personal archive mailbox στην ίδια βάση με το user mailbox σταμάτησε να ισχύει και πλέον η δυνατότητα μεταφοράς του personal archive mailbox σε ξεχωριστές βάσεις. Για να επιτύχουμε την μεταφορά ενός personal archive mailbox, θα πρέπει να έχουμε εγκατεστημένο το SP1 και στο user mailbox και personal archive mailbox.
    Έτσι, εάν είστε σε ένα περιβάλλον πολλαπλών server όπου κάποιοι mailbox servers είναι RTM και SP1 και έχετε μεταφέρει έναν χρήστη από SP1 και στη συνέχεια, θέλουμε να χωρίσουμε το personal archive mailbox σε μια ξεχωριστή βάση δεδομένων, βεβαιωθείτε ότι ο server που επιθυμείτε να μετακινήσετε το personal archive mailbox έχει εγκατεστημένο το SP1. Σε περίπτωση που αποφασίσετε να μετακινήσετε το γραμματοκιβώτιο πίσω σε RTM, πρέπει να μετακινήσετε τόσο το user mailbox και το the personal archive σε ένα RTM Server.
    Σημαντική ενημέρωση
    Ένα σημαντικό πράγμα που πρέπει να σημειωθεί, είναι ότι, προκειμένου να έχετε υποστήριξη για personal archive mailboxes που βρίσκονται σε ξεχωριστές βάσεις δεδομένων, θα πρέπει και οι δύο mailbox databases πρέπει να βρίσκονται εντός του ίδιο Active Directory Site. Η μόνη εξαίρεση που ένα personal archive θα υποστηρίζεται σε μια βάση δεδομένων σε μια ξεχωριστό Active Directory Site είναι ένα σενάριο failover, όπου το αντίγραφο βάσης δεδομένων αποτυγχάνει και γίνετ activate σε ξεχωριστό server που βρίσκεται σε ξεχωριστό Active Directory site. Αλλά για τις κανονικές συνθήκες, η βάση του user mailbox και του personal archive mailbox θα πρέπει να βρίσκονται στο ίδιο Active Directory Site.
    Επιπρόσθετες πληροφορίες:
    Understanding Personal Archives The Exchange 2010 SP1 Archiving enhancements you’ve been waiting for PLUS having Microsoft host your archive for you…
  10. Catastrophic Failure
    Ξεκινώντας το πρώτο μου Post για το 2010, θα ήθελα να ευχηθώ να έχουμε μία ευλογημένη χρονιά με υγεία, δύναμη, φώτιση και επιτυχίες. Το πρώτο θέμα μου για το 2010 δεν θα μπορούσε παρά να περιέχει Exchange Server.
    Αντιμετώπισα ένα θέμα πρόσφατα το οποίο ήταν κατά κάποιο τρόπο θα το έλεγα «κουφό». Μετά από καθαρή εγκατάσταση SBS 2008 Premium SP1, ενώ όλα πήγαν καλά με την εγκατάσταση και ενεργοποιούμε τον SBS 2008 Premium SP1 όλα κανονικά χωρίς κανένα απολύτως θέμα, πάμε λοιπόν να ανοίξουμε τον Exchange Server 2007 SP1εδώ λοιπόν ξεκίνησαν όλα με το ακόλουθο:

    Το πρώτο ερώτημα που μου δημιουργήθηκε ήταν, «πώς είναι δυνατόν με ενεργοποιημένο τον SBS Server 2008 και την εξ’ορισμου ενεργοποίηση του Exchange Server 2007 SP1 να μου ζητάει να δώσω το Product Key για τον Exchange Server 2007 SP1 και να τον ενεργοποιήσω;» Και ας υποθέσουμε ότι προσπαθούμε να δώσουμε το Product Key για τον Exchange Server 2007, ποιο Product Key να δώσουμε για ένα προϊόν που είναι ενσωματωμένο σε ένα άλλο; Για να μην σας ταλαιπωρώ άλλο να σας πω ότι το παρόν θεωρείτο Bug και επιλύετε με το «ActivateExchange Tool» το οποίο είναι διαθέσιμο μόνο από την Microsoft και δίδετε μόνο για επίλυση του παρόντος θέματος….
  11. Catastrophic Failure
    We're happy to announce that we've enhanced Exchange Server Deployment Assistant to include support for configuring rich coexistence (also known as “hybrid deployment”) for organizations interested in maintaining some users on-premises with Exchange 2010 and some users hosted in the cloud by Microsoft Office 365 for enterprises. This scenario is in addition to the existing support for configuring rich coexistence between on-premises Exchange 2003 and Exchange 2007 organizations and Office 365.
    The new coexistence information for the Exchange 2010 environment is only available in English at this time and requires that your existing Exchange 2010 servers are updated to Exchange Server 2010 Service Pack 1 (SP1).
    Rich coexistence (“hybrid deployment”) offers organizations the ability to extend the feature-rich experience and administrative control they have with their existing on-premises Microsoft Exchange organization to the cloud. It provides the seamless look and feel of a single Exchange organization between an on-premises organization and a cloud-based organization. In addition, coexistence can serve as an intermediate step to moving completely to a cloud-based Exchange organization. This approach is different than the simple Exchange migration (aka cutover migration) and staged Exchange migration options currently offered by Office 365 outlined in Email Migration Overview in Exchange Online help.
    If you're not already familiar with the Exchange Deployment Assistant, it allows you to create Exchange Server 2010 on-premises configuration and deployment instructions that are customized to your environment. It asks you a small set of simple questions and it provides a checklist with instructions that are designed to deploy or configure Exchange 2010 based on your answers. In addition to the online checklist, you can even print a PDF of your checklist.

    Figure 1: The Exchange Server Deployment Assistant (ExDeploy) is a web-based tool that helps you upgrade to Exchange 2010 on-premises, deploy a hybrid on-premises and Exchange Online organization or migrate to Exchange Online
    Your feedback is very important for the continued improvement of this tool. We would love your feedback on this new scenario and any other area of the Deployment Assistant. Feel free to either post comments on this blog post, provide feedback in the Office 365 community migration and coexistence forum, or send an email to [email protected] via the 'Feedback' link located in the header of every page of the Deployment Assistant. Thanks!
    Source: The Exchange Team

  12. Catastrophic Failure
    Part 2 of this series (Part 1 is here) breaks down the events that take place during the backup of a mounted and active replicated database in an Exchange 2010 Database Availability Group called, simply enough, “DAG”. In this example the backup server is asked to create a full backup of database DB1 on server ADA-MBX1, using non-persistent COW snapshots:
    (please click thumbnails for full size version of graphics in this post)

    Event 9606 indicates that the VSS requestor has engaged the Exchange writer, and reports the instance GUID for the backup job that is starting. In this case the instance is 830705de-32d9-4059-94ea-b9e9aad38615. This instance GUID persists throughout each job, and changes with each subsequent one. You can therefore use it to track the sequence of events for each individual job. At this time that the Exchange Writer provides metadata about the databases and logs present to the backup application.

    Events 2005 and 9811 indicate an instance number assignment for ESE. So along with the writer instance GUID event 9606 we can also track a job’s progress using these ESE instance numbers which increment by one with each job. At this stage the database is marked with “backup in progress” in the Information Store Service's memory space.

    Just after the backup application has determined which disks need snapshots created, based on the data locations provided by the Exchange Writer metadata, it goes ahead and requests those snapshots. As the snapshot requests arrive event 9608 gets generated, indicating the Exchange writer’s acknowledgment of what’s about to happen. It then must halt disk writes to the database(s) and logs, also known as a “freeze” for the duration of the snapshot generation process.
    When event 2001 is logged the current transaction log is closed, and the freeze begins. Writes from STORE.exe to the disks are held in memory.

    Once these events appear we know the snapshot(s) have been created, and writes are allowed to database data blocks again.

    Once the snapshots are created the backup application can copy blocks of data from the VSS subsystem, getting blocks of data from shadow storage if they’ve been preserved due to a change, or from the actual disk volume if they haven’t. The Exchange Writer waits for the signal that the transfer of data is complete. This flow of data is represented by the purple arrows, which in this case indicates data getting copied out of the snapshots in storage, through I/O of the Exchange server, and on to the backup server.

    Once the backup application finishes copying data it will signal VSS that it’s done. VSS in turn signals the Exchange writer, which then initiates post-backup steps, signified by the above events. Event 225 appears to state that log truncation won’t occur, but that event is misleading. For a standalone database, upon backup completion, ESE would go ahead and clear logs accordingly. However, when a DAG replicated database is involved a check of other database copies must be performed in coordination with the Exchange Replication Service to ensure log truncation can continue. Once that check is complete the logs eligible for truncation are deleted. The database header is marked with information about the backup and the backup in progress bit is switched off in memory. In this case the snapshots used for the job are destroyed as part of the completion. In other types of backups, such as incremental, the persistence of the snapshot varies, but in this case they are removed.
    In the next post in this series we'll look next at breaking down the backup of a passive DAG replicated database copy.
    Source: MSExchange Team
  13. Catastrophic Failure
    Γι’ αυτούς που αγαπούν το διάβασμα, την γνώση και την αγάπη τους γι’ αυτό που κάνουν, στους ακόλουθους συνδέσμους θα βρουν διάφορα Developer's Guides και Training Kit from Microsoft..

    Developing an Advanced Windows Phone 7.5 App that Connects to the Cloud


    Developing Applications for the Cloud, 2nd Edition


    Building Hybrid Applications in the Cloud on Windows Azure


    Building Elastic and Resilient Cloud Applications - Developer's Guide to the Enterprise Library 5.0 Integration Pack for Windows Azure


    Technical reference for Microsoft SharePoint Server 2010


    Getting started with Microsoft SharePoint Foundation 2010


    Deployment guide for SharePoint 2013 Preview


    Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0 Preview
     

    Microsoft Dynamics GP 2010 Guides: Financials


    Microsoft Dynamics CRM 2011 User's Guide


    Dynamics CRM 2011 Developer Training Kit


    Microsoft Dynamics CRM 2011 Implementation Guide


    Deployment guide for Office 2013 Preview


    Office 2010 Developer Training Kit


    Office 365 Developer Training Kit


    Office 365 Guides for professionals and small businesses

    Lync for Mac 2011 Deployment Guide


    Microsoft Lync Server 2010 Resource Kit Tools


    Microsoft Lync Server 2010 Resource Kit


    Microsoft Lync Server 2010 Security Guide


    Microsoft Lync Server 2010 Security Guide

    Visual Studio LightSwitch Training Kit


    SQL Server 2012 Developer Training Kit

    "Own Your Space--Keep Yourself and Your Stuff Safe Online" Digital Book for Teens
  14. Catastrophic Failure
    Mail flow settings
    Προτού αλλάξουμε το SMTP mail flow θα πρέπει να δημιουργήσουμε ένα Send Connector. Αυτό θα επιτρέψει στον Hub Transport Server να στείλει SMTP mail στο Internet άμεσα.
    Στην κονσόλα Exchange Management Console, μεταβείτε στο «Organization Configuration» και επιλέξτε τον Hub Transport Server. Στην καρτέλα Actions και επιλέξτε «New Send Connectorκαι δημιουργήστε ένα νέο SMTP connector για το Internet.

    Επιλέξτε αστερίσκο (*) στο namespace (αυτό θα στείλει όλα τα εξερχόμενα μηνύματα περνούν από τον connector).
    Επιλέξτε το DNS ή την επιλογή Smart host, εξαρτάτε πάντα από την δική σας κατάσταση. (Στην δική μου περίπτωση DNS).




    Εξ ορισμού ο Receive Connector στον Exchange 2010 Hub Transport Server δεν θα επιτρέψει καμία anonymous connection. Για να το αλλάξετε αυτό ανοίξτε την κονσόλα Exchange Management Console,μεταβείτε στο Server Configuration και επιλέξτε τον Hub Transport Server.Κάντε δεξί κλικ στο default Receive Connector και επιλέξτε properties.

    Επιλέξτε την καρτέλα Permissions και επιλέξτε την επιλογή «Anonymous» για να ενεργοποιήσετε το SMTP anonymous access.

    Επιπρόσθετες πληροφορίες:









    Upgrade from Exchange 2003 Client Access Upgrade from Exchange 2003 Transport
  15. Catastrophic Failure
    Καλησπέρα σε όλους και καλό χειμώνα..
    Στο σημερινό μας post θα πούμε λίγα λόγια για Cloud Office 365 και τα προϊόντα του. Θα το χωρίσουμε σε 3 Parts για να μπορέσουμε να δούμε αναλυτικότερα. Με λίγα λόγια μπορούμε να πούμε ότι το Office 365 είναι η αναβάθμιση του BPOS (έκδοση 2) plus μερικά ακόμα καλούδια.
    Όσοι γνωρίζετε το BPOS γνωρίζουν ότι περιέχει τα ακόλουθα προϊόντα:
    Exchange Online (Exchange 2007) SharePoint Online (SharePoint 2007) Office Communications Online (Office Communications Server 2007) Office Live Meeting (Live Meeting 2007) Το Office 365 περιέχει τα ακόλουθα προϊόντα:
    Exchange Online (Exchange 2010) SharePoint Online (SharePoint 2010) Lync Online (Lync 2010) Office Professional Plus 2010 Office Web Apps Το BPOS υπάρχει σε 2 εκδόσεις:
    BPOS Standard BPOS Dedicated Το Office 365 είναι διαθέσιμο σε 3 εκδόσεις:
    Small Business Office 365 P1 επαγγελματίες και μικρές επιχειρήσεις (περισσότερες πληροφορίες θα βρείτε εδώ) Enterprise Office 365 Μεσαίες και μεγάλες επιχειρήσεις (Προγράμματα για μετακινούμενους εργαζόμενους) όπου και χωρίζετε σε 4 προγράμματα – E1, E2, E3 και E4 (περισσότερες πληροφορίες θα βρείτε εδώ) Office 365 for Education για εκπαιδευτικά ιδρύματα γνωστό σαν πρόγραμμα K-12 (περισσότερες πληροφορίες θα βρείτε εδώ) Συνδεθείτε σήμερα και δοκιμάστε την Beta του Office 365 P1

    Πάμε να δούμε μαζί λίγα πράγματα για το Office 365 P1 και πώς λειτουργεί. Μετά από την εγγραφή σας στην δοκιμαστική έκδοση του Office 365 P1, θα λάβετε στο email, με πληροφορίες για την σύνδεση σας στο portal του Office 365 και το Online Services ID σας.

    Επόμενο βήμα είναι να συνδεθούμε στο portal του Office 365

    Πάμε να δούμε μερικές εικόνες για το πώς είναι το Office 365 P1 και τα προϊόντα του.

    Admin Console

    Admin: Κονσόλα διαχείρισης χρηστών, domains, subscriptions κλπ.
    Όπως μπορούμε να δούμε και στη εικόνα μας, στην κορυφή της σελίδας έχουμε 4 επιλογές (admin user) οι απλοί χρήστες βλέπουν 3 επιλογές (Home, Outlook και Team Site)

    Home: η κεντρική σελίδα των χρηστών με δυνατότητα λήψης του Lync Client και άλλες χρήσιμες πληροφορίες.


    Outlook: Πρόσβαση στο Outlook Web App (OWA).


    Team Site: SharePoint team site.


    Lync Client

    Στο επόμενο post θα δούμε αναλυτικά το κάθε ένα από τα προϊόντα του Office 365 P1…

  16. Catastrophic Failure
    Βήμα από 1 εώς 8:

    Δημιουργία ενός νέου certificate request με την χρήση Exchange Management Console.
    http://autoexec.gr/blogs/cf/archive/2010/02/14/new-features-for-exchange-2010-certificate.aspx
    2. Για να κάνουμε Submit το certificate request στο online certificate authority ακολουθήστε τα παρακάτω βήματα.

    a. Μεταβείτε στο Windows Explorer και πλοηγηθείτε στο C:\ όπου έχετε αποθηκεύση το (.req) αρχείο.
    b. Κάντε διπλό κλίκ στο αρχείο <filename.req>
    c. Στο παραθυρο διαλόγου, επιλεξτε «Select a program from a list of installed programs» και επιλέξτε OK.
    d. Στην επιλογή «Open with», επιλέξτε Notepad και έπειτα επιλέξτε OK.
    e. Στο Notepad, στο menu, επιλέξτε Edit και έπειτα επιλέξτε Select All.


    f. Στο menu, επιλέξτε Edit και έπειτα επιλέξτε Copy.
    g. Κλείστε το Notepad και το Windows Explorer.
    h. Επιλέξτε Start και έπειτα ανοίξτε τον Internet Explorer.
    i. Στο πεδίο address,πληκτρολογήστε http://<domainname>/certsrv και επιλέξτε ENTER.
    j. Στο παράθυρο Active Directory Certificate Services, στην επιλογή Select a task, επιλέξτε Request a certificate.

    k. Στην σελίδα Request a Certificate, επιλέξτε advanced certificate request. l. Στην σελίδα Advanced Certificate Request, επιλέξτε Submit a certificate request by using a base-64-encoded CMC or PKCS #10 file.


    m. Στην σελίδα Submit a Certificate Request or Renewal Request, κάντε δεξί κλικ στην επιλογή Saved Request κάντε Paste το κείμενο απο το Notepad.

    n. Κάτω απο την επιλογή Certificate Template, επιλέξτε Web Server και επιλέξτε Submit.
    o. Στην σελίδα Download a CA Certificate, Certificate Chain, or CRL επιλέξτε Base 64 Encoded και έπειτα την επιλογή Download certificate.

    p. Αποθηκεύστε το Certificate στον δίσκο C:\
    q. Εφόσον ολοκληρώσετε την διαδικασία αποθήκευσης του Certificate κλείστε τον Internet Explorer.
    Βήμα από 9 εώς 13
    http://autoexec.gr/blogs/cf/archive/2010/02/14/new-features-for-exchange-2010-certificate.aspx

  17. Catastrophic Failure
    Διαθεσιμότητα λήψης του Microsoft Office Visio stencil. Αυτό το στοιχείο λήψης περιλαμβάνει το Microsoft Office stencil με σχήματα του Visio για τον Microsoft Exchange Server 2010 και Exchange Server 2010 Service Pack 1 (SP1). Μπορείτε να χρησιμοποιήστε το Microsoft Office Visio stencil για να δημιουργήσετε σχέδια με το Visio που περιλαμβάνουν objects του Exchange 2010.

    Αυτά τα σχήματα περιλαμβάνουν εικονίδια για τα ακόλουθα:
    •Exchange 2010 server roles
    •Features new to Exchange 2010 SP1
    •Networking, telephony, and Unified Messaging objects
    •Active Directory and directory service objects
    •Client computers and devices
    •Other Exchange organization elements
    Download details: Microsoft Exchange 2010 Visio Stencil
    Exchange Server Posters
    Exchange 2010
    Exchange 2010 Architecture Poster (PDF) Exchange 2010 Hub Transport Role Architecture (PDF) Exchange 2010 Hub Transport Extensibility (PDF) Visio Stencils Exchange 2010
    Exchange 2007
    Exchange Server 2007 Component Architecture (PDF) Exchange 2007 Hub Transport Role Architecture - RTM (PDF) Exchange 2007 Hub Transport Role Architecture - SP1 (PDF) Exchange 2007 Edge Transport Role Architecture (PDF)
    Visio Stencils for Exchange Server 2007
  18. Catastrophic Failure
    The MOF Technology Library provides guidance and best practices to help you better understand how to use MOF with Microsoft technologies. The newest component of the library is the first Technical Service guide and workbook. These resources provide the knowledge, specific tasks, and schedules needed to keep technologies running smoothly so IT can deliver the services an organization expects.
     
    Files in this download
    The links in this section correspond to files available for this download. Download the files appropriate for you.
    Reliability Workbook for Active Directory Certificate Services.zip Download
    Reliability Workbook for Active Directory Domain Services.zip Download
    Reliability Workbook for DirectAccess.zip Download
    Reliability Workbook for Exchange 2010 Client Access and Transport.zip Download
    Reliability Workbook for Exchange 2010 Mailbox Services.zip Download
    Reliability Workbook for Forefront Unified Access Gateway 2010.zip Download
    Reliability Workbook for Hyper-V.zip Download
    Reliability Workbook for Internet Information Services.zip Download
    Reliability Workbook for Microsoft Application Virtualization.zip Download
    Reliability Workbook for Network Load Balancing.zip Download
    Reliability Workbook for SQL Server 2008.zip Download
    Reliability Workbook for System Center Configuration Manager.zip Download
    Reliability Workbook for System Center Operations Manager 2007 and R2.zip Download
    Reliability Workbook for System Center Virtual Machine Manager 2008 R2.zip Download
    Reliability Workbook for User State Virtualization.zip Download
    Reliability Workbook for Windows Server 2008 DNS Server.zip Download
    Reliability Workbook for Windows Server 2008 R2.zip Download
    Reliability Workbooks - All.zip Download
    Technical Service Reliability Guide for Dynamic Datacenter.zip Download

    Overview
    Administrator’s Guide for Reliability Workbooks. This administrator’s guide provides an overview to help you customize these technologies for your organization.

    MOF Reliability Workbook for Active Directory Certificate Services. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Active Directory Certificate Services running smoothly.

    MOF Reliability Workbook for Active Directory Domain Services. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Active Directory running smoothly.

    New! MOF Reliability Workbook for DirectAccess. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep DirectAccess running smoothly.

    New! MOF Reliability Workbook for Exchange 2010 Client Access and Transport. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep Microsoft Exchange 2010 Client Access and Transport running smoothly.

    New! MOF Reliability Workbook for Exchange 2010 Mailbox Services. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep Microsoft Exchange 2010 Mailbox Services running smoothly.

    New! MOF Reliability Workbook for Forefront Unified Access Gateway. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep Microsoft Forefront® Unified Access Gateway (UAG) running smoothly.

    MOF Reliability Workbook for Hyper-V. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Hyper-V running smoothly.

    MOF Reliability Workbook for Internet Information Services. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Internet Information Services running smoothly.

    MOF Reliability Workbook for Microsoft Application Virtualization. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep Microsoft Application Virtualization (App-V) running smoothly.

    MOF Reliability Workbook for Network Load Balancing. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Network Load Balancing running smoothly.

    New! MOF Reliability Workbook for SQL Server 2008. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep SQL Server® 2008 running smoothly.

    MOF Reliability Workbook for System Center Configuration Manager. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep System Center Configuration Manager running smoothly.

    MOF Reliability Workbook for System Center Operations Manager 2007 and R2. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep System Center Operations Manager running smoothly.

    MOF Reliability Workbook for System Center Virtual Machine Manager 2008 R2. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep System Center Virtual Machine Manager running smoothly.

    MOF Reliability Workbook for User State Virtualization. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides the knowledge, specific tasks, and schedules needed to keep User State Virtualization (USV) running smoothly.

    MOF Reliability Workbook for Windows Server 2008 DNS Server. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Windows Server 2008 Domain Name System (DNS) Server running smoothly.

    MOF Reliability Workbook for Windows Server 2008 R2. This workbook presents hands-on tasks that you can fine tune to meet the goals of your organization. It provides knowledge, specific tasks, and schedules needed to keep Windows Server 2008 R2 running smoothly.

    Technical Service Reliability Guide and Reliability Workbook for the Dynamic Datacenter. This newest addition to the MOF Technology Library provides the knowledge, specific tasks, and schedules needed to keep technical services running smoothly so you can deliver the services your organization expects. The workbook, along with the accompanying administrator’s guide, focuses on defining service health considerations for the Dynamic Datacenter. Use this guidance to achieve a reliable and effectively monitored and maintained Dynamic Datacenter.
    Source: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=11789
  19. Catastrophic Failure
    Exchange CXP team released Update Rollup 6 for Exchange Server 2007 SP3 to the Download Center.
    This update contains a number of customer-reported and internally found issues since the release of RU5. See KB 2608656: Description of Update Rollup 6 for Exchange Server 2007 Service Pack 3' for more details.
    We would like to specifically call out the following fixes which are included in this release:
    DST Cadence Release for Dec 2011 - Exchange 2007 22656040 An Exchange Server 2007 Client Access server may respond slowly or stop responding when users try to synchronize the Exchange ActiveSync devices with their mailboxes 2498852 "0x80041606" error message when you perform a prefix search by using Outlook in online mode in an Exchange Server 2007 environment 22653334 The reseed process is unsuccessful on the SCR passive node when the circular logging feature is enabled in an Exchange Server 2007 environment 22617784 Journal reports are expired or lost when the Microsoft Exchange Transport service is restarted in an Exchange Server 2007 environment 2289607 The week numbers displayed in OWA do not match the week numbers displayed in Outlook for English users and French users in an Exchange Server 2007 environment
    Important:
    Before proceed with Update Rollup 6 for Exchange 2007 Service Pack 3 installation on physical machine, proceed to install it first on a Lab for test reasons.
     
    Source: MSExchange Team
  20. Catastrophic Failure
    Η Microsoft έκανε released το Service Pack 2 (SP2) για τον TMG 2010 Standard και Enterprise editions.

    Το Service Pack 2 περιέχει τις ακόλουθες νέες λειτουργίες:
    New Reports
    • The new Site Activity report displays a report showing the data transfer between users and specific websites for any user.
    Error Pages

    • A new look and feel has been created for error pages.
    • Error pages can be more easily customized and can include embedded objects.
    Kerberos Authentication

    • You can now use Kerberos authentication when you deploy an array using network load balancing (NLB).
    Για να διαβάσετε τα release notes, δείτε εδώ Forefront TMG Release Notes (SP2).
    Για να πραγματοποιήσετε λήψη του Microsoft Forefront Threat Management Gateway (TMG) 2010 Service Pack 2 πατήστε εδώ.
  21. Catastrophic Failure
    Πρώτο Post για τον Δεκέμβριο μήνα και ενώ βρισκόμαστε σε Χριστουγεννιάτικο κλίμα, εμείς θα συνεχίσουμε να μιλάμε για Exchange Server. Σήμερα θα σας αναφέρω ένα θέμα το οποίο μου έτυχε πρόσφατα, αλλά και τον τρόπο επίλυσης του. Το παρόν θέμα εμφανίστηκε μετά από ΜΗ σωστή εγκατάσταση του SP1 του Exchange Server 2010.
    Συμπτώματα
    Δεν μπορούσαμε να ανοίξουμε το Outlook Web App και μας έδινε το ακόλουθο error:
    HTTP Error 500.0 - Internal Server Error, Module "exppw" could not be found
    Επίλυση
    1. Μεταβείτε στον IIS Manager επιλέξτε το όνομα του Server (Server Name) και επιλέξτε «Modules».
    2. Κάντε κλικ στην επιλογή ‘Configure Native Modules’ -> επιλέξτε ‘Register’ -> πληκτρολογήστε το όνομα ‘exppw’.
    3. Έπειτα κάντε browse και επιλέξτε το path του αρχείου: c:\Programme Files\Microsoft\Exchange Server\V14\Client Access\OWA\Auth\exppw.dll (όταν c:\ είναι το default drive που έχουμε εγκαταστήσει τον Exchange)
    4. Οι παραπάνω αλλαγές θα πρέπει να εφαρμοστούν στο Default Web Site (DWS) και στο OWA Virtual Directory (VDir).
    Σημείωση: Εάν το ‘EXPPW’ Module δεν είναι διαθέσιμο στο OWA (VDir), προσθέστε το επιλέγοντας ‘Configure Native module’ και θέστε το path μόνοι σας, όπως είπαμε παραπάνω (c:\Programme Files\Microsoft\Exchange Server\V14\Client Access\OWA\Auth\exppw.dll (όταν c:\ είναι το default drive που έχουμε εγκαταστήσει τον Exchange).
    5. Διαγράψτε το ‘EXPPW’ module και από το αρχείο DWS.
    6. Τέλος επιβεβαιώστε ότι το module του OWA (VDir), ‘Module Type’ είναι ρυθμισμένο στο ‘Native’ και το ‘Entry Type’ είναι στο ‘Local’
    Η αιτία που η οποία μας έδωσε το παρόν μήνυμα λάθους : Το ‘EXPPW’ Module κάτω από το OWA Virtual Directory (VDir) στον IIS Manager είτε λείπει είτε δεν είναι σωστά ρυθμισμένο..
    Reset Client Access Virtual Directories

  22. Catastrophic Failure
    Wanted to write a quick post about a tool that can help you find and catalogue various PowerShell scripts that are scattered on various online communities or – possibly – your internal company network shares.
    The tool is called Microsoft Script Explorer for Windows PowerShell and has entered the public Beta 1 stage now.
    Download Microsoft Script Explorer for Windows PowerShell (pre-release) User guide Script Explorer Forum Just to give you a taste of how it looks…

    You can search scripts by category, with keywords or various other options. You can also dive directly into categories, which allows you to see scripts by product.
     
    Source: Nino Bilic
  23. Catastrophic Failure
    Όπως ανέφερε και αγαπητός Pkalog ,το Service Pack 1 για τον Exchange 2010 is coming!!
    Στο παρόν Post, δα δούμε με μια πρώτη ματιά, τις αλλαγές που θα φέρει το Service Pack 1 του Exchange Server 2010. Το SP1 θα περιέχει fixes τα οποία θα μας βοηθήσουν στα διάφορα θέματα που έχουν προκύψει. Επίσης θα ήθελα να επισημάνω μερικές από τις βελτιώσεις που θα φέρει το SP1 στα ακόλουθα: archiving, Outlook Web App (OWA) improvements, mobile user και management improvements, και επιπρόσθετα UI για management tasks. Αυτή δεν είναι η ολοκληρωμένη λίστα (υπάρχουν και πολλά άλλα).
    Είμαι στην ευχάριστη θέση να σας ενημερώσω ότι θα κυκλοφορήσει μια beta του SP1 για download, τον Ιούνιο 2010. Αυτό θα μας δώσει την ευκαιρία να δοκιμάσουμε το SP1 και να προετοιμαστούμε για την επίσημη κυκλοφορία του.
    Archiving and Discovery Enhancements
    Με την έκδοση του Exchange Server 2010 παρουσιάστηκε μια νέα ενσωματωμένη δυνατότητα archiving η οποία μας βοηθά στην αρχειοθέτηση των e-mail data. Στο SP1, έχει ενισχυθεί η δυνατότητα archiving. Αυτό περιλαμβάνει την προσθήκη της ευελιξίας στην παροχή Personal Archive του χρήστη σε μια άλλη βάση δεδομένων mailbox από το primary mailbox τους. Έχουν επίσης προστεθεί νέες δυνατότητες, έτσι ώστε να είναι δυνατή η εισαγωγή ιστορικών δεδομένων e-mail «historical e-mail data» από τα αρχεία. PST, απευθείας στο Exchange.
    Το SP1 ενημερώνει «update» την κονσόλα Exchange Management Console με νέα εργαλεία «tools» για την δημιουργία «Retention Policy Tags», έτσι ώστε να μπορεί να αυτοματοποιήσει τη διαγραφή και την αρχειοθέτηση των e-mail και άλλα Exchange items.
    Για εκείνους που απογοητεύτηκαν όταν διαπίστωσαν ότι το Archive δεν λειτουργεί σε Outlook 2007 μπορούν να χαρούν, καθώς το SP1, θα υπάρξει μια ενημέρωση που θα μας δώσει τη δυνατότητα πρόσβασης των user's Personal Archive με το Outlook 2007.
    Μάθετε περισσότερα για το Archiving with Exchange 2010 whitepaper.
    Outlook Web App – Καλύτερο από ποτέ
    Το OWA γίνετε γρηγορότερο με το SP1. Με τις δυνατότητες delete, mark as read, και categorize operations running asynchronously, αυτές οι δυνατότητες εμφανίζονται ποιο γρήγορα στον χρήστη και πολλά άλλα.
    Τέλος, για αυτούς που επιθυμούσαν την δυνατότητα αλλαγή της εμφάνισης του OWA, έρχονται τα OWA themes προσθέτοντας αρκετά OWA themes εφαρμόζοντας το OWA στο δικό σας στυλ.
    Νέο Management UI
    Πολύ από εμάς λατρεύουμε την PowerShell άλλοι πάλι όχι, το SP1 θα φέρει νέα management UI πρόσθετα στην κονσόλα Exchange Management Console (EMC) και Exchange Control Panel (ECP).
    Πάρτε μια γεύση από αυτά:
    Create/configure Retention Tags + Retention Policies in EMC Configure Transport Rules in ECP Configure Journal Rules in ECP Configure MailTips in ECP Provision and configure the Personal Archive in ECP Configure Litigation Hold in ECP & EMC Configure Allow/Block/Quarantine mobile device policies in ECP RBAC role management in ECP Configure Database Availability Group (DAG) IP Addresses and Alternate Witness Server in EMC Recursive public folder settings management (including permissions) in EMC
  24. Catastrophic Failure
    Τα βήματα για την εγκατάσταση του Exchange 2007 SP2 σε CCR είναι τελείως διαφορετική διαδικασία από την απλή εγκατάσταση σε ένα μη clustered servers.
    Μπορείτε να αναβαθμίσετε το CCR nodes μόνο με την χρήση του PMS (Power management shell). Η εντολή εκτέλεσης είναι: Setup.com /mode:upgrade (Setup /M:Upgrade in short). Δεν μπορείτε να προχωρήσετε σε αναβάθμιση CCR nodes χρησιμοποιώντας το GUI.
    Η διαδικασία με λίγα λόγια είναι να αναβαθμίσετε το passive node πρώτα, κάντε επανεκκίνηση, αναβαθμίστε το Clustered Mailbox Server (CMS) για να μετακινήσετε το παθητικό κόμβο, αναβαθμίστε το CMS (το οποίο καθιστά το node σαν active) και στη συνέχεια αναβαθμίστε το initial active node και κάντε επανεκκίνηση.
    1. Αναβάθμιση του Passive CCR Node:
    Κάντε Log στο passive node με admin account. Βεβαιωθείτε ότι είναι ανενεργά (σταματημένα) όλα τα monitoring services που εκτελούνται στον server (όπως το MOM agents). Μπορείτε επίσης να θέσετε τον server σε maintenance mode για 30 λεπτά, έτσι ώστε τα email alerts (δεν θα γεμίζουν τα εισερχόμενά σας). Αυτό είναι πολύ σημαντικό σε μεγάλους οργανισμούς.
    Μεταβείτε στο CMD (command prompt) και πλοηγηθείτε στο Exchange 2007 sp2 installation directory / dvd drive. Εκτελέστε την εντολή Setup.com /Mode:Upgrade






    Η εγκατάσταση τρέχει τον exchange pre-requisites για τον mailbox role.

    Όταν ολοκληρωθεί ο έλεγχος, ακολουθούν με σειρά τα παρακάτω:
    Προετοιμασία εγκατάστασης του SP2. Κατάργηση «Removing» των αρχείων Exchange από το σύστημα. Εκκίνηση εγγραφής των αρχείων από το dvd / installation folder. Εγκατάσταση του mailbox server role. Εγκατάσταση των management tools Και τέλος εγκατάσταση.
    Επανεκκίνηση του server μετά την επιτυχή ολοκλήρωση των command.
    2. Αναβάθμιση του Clustered Mailbox Server
    Μετά την επανεκκίνηση του passive server και την επαναφορά του online, θα εκτέλεση το Exchange 2007 SP2. Να σημειωθεί ότι το active node εξακολουθεί να είναι online και εξυπηρετεί τους users. Πρέπει να αναβαθμίσουμε τώρα το Clustered Mailbox Server (CMS), προτού προχωρήσουμε στην αναβάθμιση του active node.
    Πριν αναβαθμίσουμε το Clustered Mailbox Server (CMS), θα πρέπει να σταματήσουμε το CMS το οποίο εκτελείτε στο active node και να το μεταφέρουμε στο passive node (upgraded server). Το βήμα αυτό θα έχει ως αποτέλεσμα να καθιστά τον Exchange server μη διαθέσιμο «unavailable» για τους CMS users και ως εκ τούτου πρέπει να γίνει εκτός εργασιακών ωρών. Συνδεθείτε στο passive node, εκκινήστε το exchange shell και εκτελέσετε την ακόλουθη εντολή για να σταματήσετε το CMS.
    Stop-ClusteredMailboxServer MBX –StopReason “SP2 Upgrade”

    Επιβεβαιώστε το βήμα πατώντας «Y».

    Βεβαιωθείτε ότι η κατάσταση του cluster είναι Offline.

    Μόλις το cluster είναι σταματημένο, μεταφέρετε το CMS στο passive node από την κονσόλα ή εκτελώντας την ακόλουθη εντολή μέσω shell.
    Move-ClusteredMailboxServer MBX –TargetMachine CCR2 –MoveComment “SP2 Upgrade”
    Επιβεβαιώστε το παρόν βήμα.

    Πλοηγηθείτε στο Exchange 2007 sp2 installation folder /dvd και αναβαθμίστε το CMS εκτελώντας την ακόλουθη εντολή:
    Setup.com /UpgradeCMS
    Η εγκατάσταση τρέχει τον προαπαιτούμενο έλεγχο πριν την αναβάθμιση τουCMS.

    Όταν ολοκληρωθεί ο επιτυχώς ο έλεγχος, φέρνει το σταματημένο cluster online και τώρα έχουμε ένα αναβαθμισμένο CCR να εκτελείτε στο ένα node. Μπορείτε να ελέγξετε την κατάσταση του cluster χρησιμοποιώντας το «Failover Cluster Management tool». Οι χρήστες μπορούν να ξεκινήσουν να συνδέονται στο cluster.

    3. Αναβάθμιση του αρχικού Active Node (Now Passive)
    Συνδεθείτε στο passive node (initial active node) με admin account. Εκκινήστε το command prompt και μεταβείτε στο Exchange 2007 sp2 installation directory / dvd drive. Εκτελέστε την εντολή Setup.com /Mode:Upgrade

    Η εγκατάσταση εκτελεί τον προαπαιτούμενο έλεγχο και εγκαθιστά το service pack.

    Επανεκινήστε τον server και τώρα διάθετε στο σύστημα σας Exchange 2007 SP2 CCR.

  25. Catastrophic Failure
    Μετά την ανακοίνωση για την διαθεσιμότητα του Windows 2008 R2 SP1 RTM, η ομάδα του MSExchange θέλοντας να προλάβει το ερώτημα «Εάν ο Exchange Server υποστηρίζετε σε Windows Server 2008 R2 SP1?», ενημερώνει ότι, έχουν δοκιμάσει το Windows 2008 R2 SP1 RTM στις ακόλουθες εκδόσεις του Exchange και είναι supported:
    Exchange 2010 SP1 Exchange 2010 RTM Exchange 2007 SP3 Σημείωση: Όπως θυμάστε ο Exchange 2007 δεν μπορούσε να εγκατασταθεί σε Windows 2008 R2 πριν την έκδοση Exchange 2007 SP3.
    Σημείωση: Το SP1 του Windows 2008 R2 συμπεριλαμβάνει τα Hotfixes που απαιτούνται για την εγκατάσταση του Exchange 2010 SP1, εάν λοιπόν εγκαταστήσετε Windows 2008 R2 SP1 δεν χρειάζεται να προβείτε σε εγκατάσταση το προαπαιτούμενων Hotfixes για την εγκατάσταση του Exchange 2010 SP1.
    Source: Nino Bilic
×
×
  • Create New...