'Exchange Server' Category

  • Exchange 2010 SP2–Cross Site Silent Redirection

    December 5, 2011

    Exchange Server 2010 SP2 Microsoft download sayfasında yayınlandı. Daha önce SP2 ile birlikte gelecek yenilikler hakkında bilgi sahibi olmuştuk. Artık bunları PROD ortamlarımızda kullanabilir durumdayız. Bana göre en önemli özelliklerden birisi farklı sitelardaki bulunan CAS sunucuları arasındaki silent redirection mekanizmasındaki gerçekleştirilen geliştirme. Exchange 2007 ve SP2 öncesi 2010 ile birlikte birden fazla active directory site’ına [...]

    Share
  • Vmware tabanlı sanallaştırmada Exchange 2010 DAG desteği

    January 25, 2011

      Aşağıda Technet sayfasında Exchange 2010 implementasyonu sırasında sanallaştırma altyapısı kullanılacak ise dikkat edilmesi gereken noktalar belirtilmiş. Only management software (for example, antivirus software, backup software, or virtual machine management software) can be deployed on the physical root machine. No other server-based applications (for example, Exchange, SQL Server, Active Directory, or SAP) should be installed [...]

    Share
  • PowerShell Script to export mailboxes with state and description attribute

    January 20, 2011

    As you know, standard Get-Mailbox cmdlet don’t have stateorprovince and description properties.Just check with Get-Mailbox | Get-Member Well then, what is the best way to get these properties within one single script? In the script below, all users which has mailboxes, are exported with Organizational Unit, Display Name, State or Province, Description and Primary SMTP [...]

    Share
  • List disabled mailboxes and export to CSV

    January 10, 2011

    Get-Mailbox | where { $_.ExchangeUserAccountControl -eq “Accountdisabled” -and $_.recipienttypedetails -eq “usermailbox”  } | select name | Export-Csv c:\disableduserswithmailboxes.csv Share

    Share
  • Create Test Users On Exchange 2010

    December 30, 2010

    Want to create a group of test users in your lab? Use this command: 1..100 | ForEach { Net User "User$_" MyPassword=01 /ADD /Domain; Enable-Mailbox "User$_" } Now let’s comment about how to remove these 100 users with powershell ? Share

    Share
  • Exchange 2010 SP1 Mailbox Move Issues

    December 25, 2010

    If you previously implemented Exchange Server 2010 RTM and after a while ,you upgraded to SP1, you should realize about mailbox move process times.Now it is taking more. This is because parallel move values is set to 2 on Exchange Server SP1. In RTM version; MaxActiveMovesPerSourceMDB : Number of mailboxes that can be moved on [...]

    Share
  • RedistrubuteActiveDatabases.ps1

    December 25, 2010

    You can use the 1RedistributeActiveDatabases.ps1 script to balance the active mailbox databases copies across a DAG. This script moves databases between their copies in an attempt to have an equal number of mounted databases on each server in DAG. If required, the script also attempts to balance active databases across sites. The script provides two [...]

    Share
  • Exchange Server 2010 SP1–New High Availability Scripts

    December 25, 2010

    With Exchange Server 2010 SP1, several scripts came available for High Availability actions. StartDAGServerMaintenance.ps1 Suspends Mailbox Database Replication Pauses High Availability Node Sets the DAG node on blocked Movel databases to other nodes You can use this script to safely upgrade operating system or Exchange Server (rollups or service packs) StopDAGServerMaintenance.ps1 After the maintenance process [...]

    Share
  • The Certificate Status could not be determined because the revocation check failed

    December 25, 2010

    The Certificate Status could not be determined because the revocation check failed In one of my customer, Exchange Server 2010 could not be determined for certificate status because the revocation check failed.After some research I discover that Exchange was not configured to use right proxy server and exceptions. By default Exchange Server 2010 uses WinHTTP [...]

    Share
  • Exchange 2010 Automatic Mailbox Creation

    December 20, 2010

    While you are creating new mailboxes , in previous versions of exchange server, you must specify the mailbox database that will hold the mailboxes. In exchange 2010, in new mailbox wizard, if you forget to specify a mailbox database, you will not get an error.But Where’d it go? Automatic mailbox distribution is a new feature [...]

    Share
  • Exchange 2010 DAG / VMware High Availability

    December 20, 2010

    If you are planning to deploy your Exchange Server 2010 Database Availability Group on VMware environment, there is a certain misunderstanding about the configuration. From VMware side ; While the use of database availability groups on top of hypervisor based clustering is not a formerly (sic) supported configuration, internal VMware tests have shown that the [...]

    Share
  • Operations Checklist for Exchange 2010 Environment

    December 20, 2010

    Organizations who use Exchange server typically develop checklists or procedures for day-to-day maintenance operations. This includes updates, backups, security, disaster recovery planning, etc. Sometimes, new Exchange orgs cobble together these checklists based on other server platforms already in place, or from colleagues at other organizations, online materials, etc. Microsoft has made available several checklists for [...]

    Share
  • Outlook 2007–Exchange 2010 Archive Mailboxes Support

    December 17, 2010

    I have just read that, with a cumulative update, Outlook 2007 is now supporting Exchange 2010 archive mailboxes. Following Office editions are supported for archival support: Office Ultimate, ProPlus, Office Enterprise, Outlook Standalone Share

    Share
  • Update Rollup 2 (UR1) for Exchange Server 2010 SP1 released

    December 16, 2010

    Microsoft has released the following update rollup for Exchange Server 2010: • Update Rollup 2 for Exchange Server 2010 SP1 (2425179) If you’re running Exchange Server 2010 SP1, you need to apply Update Rollup 2 for Exchange 2010 to address the issues listed below. Remember, you only need to download the latest update for the [...]

    Share
  • How to prepare domain/forest for Exchange 2010

    December 16, 2010

    If you want to upgrade your legacy Exchange organization to Exchange 2010, first part of this process is to prepare existing forest and domain structure. To achieve this goal, adprep command line tool which is located in Exchange 2010 DVD, will be helping u. For a single forest and multiple domain environment, You must run [...]

    Share
  • New Throttling Policies Cmdlets on Exchange Server 2010 SP1

    December 16, 2010

    In Exchange Server 2010, to determine which throttling policy was associated with a specific user, you would use; Get-mailbox anilErduran | dl ThrottlingPolicy And to assign a policy to a user; Set-Mailbox anilerduran – ThrottlingPolicy POLICY1 As you see above, in exchange 2010 you can only assign a Throttling Policy to a specific mailbox account. [...]

    Share
  • Remove Mailbox for Disabled User Objects

    December 15, 2010

    Following script will look for disabled users with mailboxes and will remove mailbox attributes on these objects. Get-Mailbox | where { $_.ExchangeUserAccountControl -eq "Accountdisabled" -and $_.recipienttypedetails -eq "usermailbox"  } | select name | Export-Csv c:\disableduserswithmailboxes.csv Import-CSV C:\disableduserswithmailboxes.csv | ForEach-Object { remove-mailbox -identity $_."Name" -Confirm:$false } Share

    Share
  • Powershell Script to Remove Mail Addresses

    December 15, 2010

    If you have migrated to Exchange 2007 or Exchange 2010 from legacy versions, and changed shared smtp namespaces, then unused mail address attributes will remain on migrated user objects. Following script will read users.txt and look for specific text in mail addresses , and then will remove finally. Get-Content C:\users.txt |Get-Mailbox | foreach{        for [...]

    Share
  • A powershell script that sends email about sent and received message counts on Exchange 2010

    December 15, 2010

    One of my customer ask me that is there any way to obtain sent and received message counts on Exchange 2010 for specific timelines.With following script, you can get all transport servers on your organization, read sent and received message counts for last 24 hour period , save this to the local disk, and email [...]

    Share
  • Exchange 2010 üzerinde Mailbox Size ların Powershell ile alınması ve mail ile gönderilmesi

    November 9, 2010

    Exchange 2010 yapısına geçirdiğimiz bir müşterimizden şöyle bir talep geldi. Yapıda varolan tüm Mailbox veritabanlarındaki varolan mailboxların totalitemsize,kota,varolan sizeları gibi bilgileri belirli periyodlarla edinebilirmiyim? Burada tabiki powershell komutlarını kullanarak bazı taklalar atmamız mümkün.Hatta artık Exchange 2010 ile ilgili gelen taleplerin neredeyse tamamına aklımda powershell komutları olduğu müddetçe “œmümkündür” cevabını veriyorum. Burada yapmamız gereken Get-MailboxStatistics cmdlet [...]

    Share
  • Exchange 2010 CAS Upgrade milestones

    November 1, 2010

    If you have a mixed environment that includes Exchange 2003 frond-end and Exchange 2007 Cas servers and planning to upgrade Excahnge 2010 CAS server, consider following key points; If the Exchange 2007 mailbox is in the same AD Site as CAS2010, CAS2010 will silently redirect the session to the Exchange 2007 CAS. If the Exchange [...]

    Share
  • Cluster senaryolarında “Split Brain Syndrome” ve Exchange 2010 çözümü

    October 27, 2010

    Exchange 2010 ile birlikte cluster tarafında önemli yenilikler geldiğini şimdiye kadar okuduğunuz makale ve postlardan hatırlıyorsunuzdur.Buradaki en önemli yenilik Database Availability Group’dur.Exchange organizasyonunda tek site yada çok sitelı yapılarda oluşturulan DAG lar içerisinde mailbox sunucular eklenerek sunucu başına database için aktif ve passive ownerlar belirlenebiliyor.   MBX1 ““ LOKASYON1 MBX2 – LOKASYON1 MBX3 – LOKASYON2 [...]

    Share
  • Exchange 2010 Architecture Poster

    October 19, 2010

    Download Center to download the Exchange Server 2010 Architecture Poster (PDF). I suggest you to view the printed version also Share

    Share
  • Exchange 2010 EMS WinRM Error

    October 18, 2010

    If you have an Exchange Server 2010 on Server 2008 R2 , Exchange Management Shell can have problems with the following error; Connecting to remote server failed with the following error message: The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer. The content [...]

    Share
  • Exchange Server 2010 SP1 Update Rollup 1

    October 13, 2010

    SP1 güncellemesi için Update Rollup 1 yayınlandı.Bir önceki makalede RU kurulumları ile ilgili bilgi vermiştim. http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a371fa96-e85b-4a4f-8242-15d56595d0ec&displaylang=en Share

    Share
  • Exchange 2010 SP1 ile gelen DAG Maintenance Scriptleri

    October 13, 2010

    Bildiğiniz gibi Exchange sürümlerinde Update Rolluplar ile birçok hata giderilip gerekli update konfigurasyonları gerçekleştiriliyor.Hali hazırda Exchange 2010 için update rollup 4 bulunmakla birlikte birçok organizasyonda projeler kapsamında Update Rollup 3 “˜ü kuruyoruz. Buradaki önemli nokta UR kurulumları sırasında tüm exchange servislerinin durdurulması, owa dizinlerinin baştan yaratılması ve bu sebeple iis servislerininde durması.Bu sebeple üzerinde çalışan [...]

    Share
  • Exchange 2010 SP1 New Out of Office Cmdlets

    October 11, 2010

    Exchange 2010 SP1 ile birlikte iki adet OOF yönetimine yardımcı cmdlet geldi. Get-MailboxAutoReplyConfiguration Set-MailboxAutoReplyConfiguration Aşağıdaki çıktıyı inceleyebilirsiniz. Get-MailboxAutoReplyConfiguration anil AutoReplyState     : Scheduled EndTime                : 9/19/2010 11:30:00 PM ExternalAudience  : All ExternalMessage  : <html xmlns:o="urn:schemas-microsoft- … </html> InternalMessage  : <html xmlns:o="urn:schemas-microsoft- … </html> StartTime              : 9/17/2010 6:00:00 AM MailboxOwnerId   : ae.com/Users/Anıl Erduran Identity                : ae.com/Users/Anıl Erduran [...]

    Share
  • Lync Server 2010 ile Exchange 2010 SP1 OWA Entegrasyonu

    October 11, 2010

    Lync Server 2010 Exchange 2010 SP1 ile entegra olarak OWA’nın aynı zamanda Lync Web Client olarak davranması sağlanabiliyor.Böylece kullanılar OWA’ya login olduklarında aynı zamanda otomatik olarak Lync’e oturum açıyorlar.Bu özelliğin kattığı birçok yenilik var. Kullanıcılar OWA arayüzünü kullanarak anlık mesajlaşmadan log off yada log on olabilirler. Kullanıcı presence bilgisi renkli birşekilde tüm lync kullanılarına sunulur [...]

    Share
  • Exchange 2010 MAPI ve Directory Access için statik port tanımlaması

    October 5, 2010

    Exchange 2010 mimarisinde bildiğiniz gibi client erişim metodları değişti.aRTIK MAPI clientlar direk mailbox server’a bağlanmak yerine RPC endpoint’I olan CAS sunuculara bağlanıyorlar. Burada High Availability opsiyonlarında bir değişiklik söz konusu.DAG ( Database Availability Group) kullanarak mailbox serverların yüksek erişilebilirlik özelliklerine sahip olmasını sağlayabilirsiniz. Peki ortamda iki adet CAS sunucunuz var ve bunlarında HA olarak çalışmasını [...]

    Share
  • Exchange 2010 SP1 ile gelen yenilikler – Mailtips

    April 9, 2010

    Exchange 2010 SP1 paketi ile gelecek yenilikleri incelemeye devam edelim.Yine birçok kişinin olması gerekli dediği özelliklerden birisi Personal Archieve mailboxlarının ayrı bir mailbox database üzerinde tutulmasıydı.Çünkü eğer bu yapıyı bir arşivleme çözümü olarak kullanmak istiyorsanız ne yazıkki tüm arşiv mailboxlarını başka bir storage ve database üzerinde tutabilme şansımız yoktu. Yalnız SP1 ile birlikte arşiv oluşturma [...]

    Share
 
Powered by Wordpress and MySQL. Theme by Shlomi Noach, openark.org