Posts

E14 Ticket: Unable to Download OAB after Exchange 2010 SP2–Part2

Image
  (*Final Answer*) OAB issues after simplifying the OWA 2010 URL? http://blogs.msexchange.org/walther/2010/03/22/oab-issues-after-simplifying-the-owa-2010-url/ http://social.technet.microsoft.com/wiki/contents/articles/simplify-the-outlook-web-app-url-in-exchange-server-2010.aspx     http://social.technet.microsoft.com/Forums/sk/exchange2010/thread/0e2e73a1-73ca-4d0c-a5a3-3434be8ebd73 Perhaps you are seeing the same thing.  Check the OAB directory (%ExchangeInstallPath%\ClientAccess\OAB) for a web.config file.  If it exists you can do one of two things.  Delete it (I usually rename it) or grant NT Authority\Authenticated Users READ access to the web.config file. You may have to reset IIS after making the change; not 100% on that.

E14 Ticket: Unable to Download OAB after Exchange 2010 SP2

Image
    ======================================================================= Part 3 ======================================================================= 1. 2. 3. Get the value of OAB Container OAB Server: BQT-MBX01 [PS] Get-OfflineAddressBook –Server BQT-MBX01 | fl DistinguishedName : CN=BQT-MBX01 OAB,CN=Offline Address Lists,CN=Address Lists Container,CN=MSFT,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=corp,DC=com 4. Set $TenantOAB [PS] C:\>$TenantOAB="CN=BQT-MBX01 OAB,CN=Offline Address Lists,CN=Address Lists Container,CN=MSFT,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=corp,DC=com" 5. Add-ADPermission -User “Domain Users” (Security Group) [PS] C:\>Add-ADPermission $TenantOAB -User "MSFT\Domain Users" -ExtendedRights "MS-EXCH-DOWNLOAD-OAB"| Identity User Deny Inherited -------- ---- ---- --------- \BQT-MBX01 OAB MSFT\Domain Users False False ...

E14 Ticket: REDIRECTING OWA URLS IN EXCHANGE 2010

    http://www.howexchangeworks.com/2012/04/redirecting-owa-urls-in-exchange-2010.html   http://www.n2networksolutions.com/2011/01/13/redirect-port-80-on-exchange-2010-to-ssl-or-443-for-owa-or-outlook-web-access/

E14–Autodiscover overwrites Outlook “MSSTD” setting

Image
  1. Keywords Autodiscover Outlook Provider MSSTD mutual autentication disable mutual authentication exchange 2010   2. Question http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/25d2188c-37eb-4d72-952a-2f8ca9e461bd http://www.agileit.com/Blog/Lists/Posts/Post.aspx?List=c12b6877-9140-4536-b226-b3e11ff929a3&ID=278&RootFolder=%2A&Web=b8624129-0cec-4b70-9743-b27ca84c4802   What you need to do is to configure the Outlookprovider EXPR. Set-OutlookProvider EXPR -CertPrincipalName msstd:bleum.com You can also set the CertPrincipleName to a value of none to disable mutual autentication, but I really don't recommend that. Example: Set-OutlookProvider EXPR -CertPrincipalName none When that has been done, recycle the applicationpool MSExchangeAutodiscoverAppPool in IIS 3. Before recycle IIS Pool   4. Recycle IIS Pool   5. EXRCA after recycle IIS pool ...

E14– Windows Server Backup on DAG–Part6-BalanceDbsByActivationPreference

Image
    1. @echo off For /f "tokens=1-3 delims=/ " %%a in ('date /t') do (set date=%%a-%%b-%%c) For /f "tokens=1-2 delims=: " %%a in ('time /t') do (set time=%%a:%%b) rem echo The date is %date% rem echo The time is %time% set backuplog="c:\batch\WSB\BackupLog\"%computername%-WSB.txt"" echo. Start:%date%  %time%  >> %backuplog% echo. ================================== >> %backuplog% Rem ================================== wbadmin start backup  -backupTarget:B: -include:P:,S:,T:,U:,V:,W:  -vssFull -quiet >> %backuplog% Rem ================================== echo. ================================== >> %backuplog% echo. End    >> %backuplog% For /f "tokens=1-3 delims=/ " %%a in...

E14– Windows Server Backup on DAG–Part5–Process WSB on DAG active node

Image
  1.   2. @echo off For /f "tokens=1-3 delims=/ " %%a in ('date /t') do (set date=%%a-%%b-%%c) For /f "tokens=1-2 delims=: " %%a in ('time /t') do (set time=%%a:%%b) rem echo The date is %date% rem echo The time is %time% set backuplog="c:\batch\WSB\BackupLog\"%computername%-WSB.txt"" echo. Start:%date%  %time%  >> %backuplog% echo. ================================== >> %backuplog% Rem ================================== wbadmin start backup  -backupTarget:B: -include:P:,S:,T:,U:,V:,W:  -vssFull -quiet >> %backuplog% Rem ================================== echo. ================================== >> %backuplog% echo. End    >> %backuplog%...

E14– Windows Server Backup on DAG–Part4–Process WSB on DAG passive node

Image
  1. echo off For /f "tokens=1-3 delims=/ " %%a in ('date /t') do (set date=%%a-%%b-%%c) For /f "tokens=1-2 delims=: " %%a in ('time /t') do (set time=%%a:%%b) rem echo The date is %date% rem echo The time is %time% Rem ================================== PowerShell.exe -command ". C:\Batch\WSB\PS_RedistributeActiveDatabase_before-WSB.ps1" Rem ================================== Cscript C:\Batch\WSB\DB_Active_Notify.vbs Rem ================================== del  "C:\Batch\WSB\DB_Activation_Log\DB_Activation.txt" Timeout /T 100 Rem ================================== Rem ================================== set backuplog="c:\batch\WSB\BackupLog\"%computername%-WSB.txt"" echo. Start:%date%  %time%  >> %backuplog% ...