Outlook anywhere, auto discover and multi CAS's that are not an array

exchange forest: 4 X exchange 2010 SP3. root is HQ, sites are B, C & D.
I set up auto discover by a SRV record in DNS and auto discover works perfectly for HQ users. 
 But when a user from Site B  tries it, the delivered XML sent to  their Outlook will redirect that person up to the Site B's server where it fails due to a mutual
validation error. This is because Outlook is expecting the SSL cert from HQ but gets Site B's. 
In exchange 2007 this would not be a problem as there were no redirects, the  client access server that hosted the autodiscover service would fetch the email and send it onto outlook from Site B's mailbox. So what I am looking for is either a setting that
will stop this redirect or a work around, one that I can think of is to turn off Outlook Anywhere on other CAS’s, leaving it only running on the root, HQ.
I’m not worried about capacity we have at most at any one time 10 Windows Outlook users outside the office as all the rest the remote users are either using IMAP or ActiveSync.  So is shutting down outlook anywhere on B,C &D. Or is there a setting
that I can change on HQ to make it that it always goes through HQ.
thanks

Hi,
Firstly, I’d like to explain, internal users in site B can always find the CAS serve in site B. Because Outlook clients firstly find the SCP records of the in-site list.
To make them use HQ site SCP record for its Autodiscover requests, we can set Site Affinity: 
Set-ClientAccessServer -Identity "CAS in site HQ" –AutodiscoverServiceInternalURI "https://internalsitename/autodiscover/autodiscover.xml" -AutodiscoverSiteScope "site B",”site HQ”
http://technet.microsoft.com/en-us/library/aa998575(v=exchg.141).aspx
The previous command only ensures the following:
• If an Outlook client is a member of the HQ Active Directory site, it will use the HQ SCP record for its Autodiscover requests.
• If an Outlook client is a member of the Active Directory site B , it can use the HQ SCP record for its Autodiscover requests.
For more information, you can refer to the partition named configuring the Autodiscover service to use site affinity for internal communication in the following article:
http://technet.microsoft.com/en-us/library/jj591328(v=exchg.141).aspx#BKMK_ConfiguringSiteAffinityInternal
For external users, we can make the host name Autodisocver.domain.com points to the IP address of CAS sever in site HQ.
If you have any question, please feel free to let me know.
Thanks,
Angela Shi
TechNet Community Support

Similar Messages

  • HT1349 I'll be able to store and share different files that are not page,numbers or keynote, like I'd with idisk?

    I'll be able to store and share different files that are not page,numbers or keynote, like I'd with idisk?

    Not going to happen the way you want it to.
    When you add a gift card balance to the Apple ID, it's available for the Apple ID.
    Probably best to create unique Apple ID's for each... this will also make things easier in the future as purchases are eternally tied to the Apple ID they were purchased with.

  • Had to uninstall iWork trial since I bought the pages app and it wouldn't let me print or save.  Now the app store says I have pages installed but I can't find it anywhere to open and use it.  I'm not very computer savvy and am getting frustrated!

    Ooops, guess I didn't need to post everything in the title - sorry!  I bought the pages app - but couldn't save or print so with some online searching found that I had to uninstall the iWork trial which had expired.  I did that - but now I can't figure out how to re-install the pages app!!  The app store says it's installed, but I can't find it anywhere to open and use it.  I'm not very computer savvy - and am a first time Mac user and am getting extremely frustrated!  I e-mailed some help center and they can't seem to help me either.  I would appreciate any help/advice that can fix my problem - thanks in advance!!

    OK Apple has stuffed up the demo version upgrade process so the first thing you need to do is get rid of the demo.
    That includes getting rid of the files in the system.
    The instructions how to do that are here:
    Note That where you see / that is the sequence of folders, each nested inside each other.
    User/Library/Preferences the com.apple.iwork.Keynote.plist
    Means the User (you, the little home icon, whatever you are called on your computer) then the Library folder inside that and then the Preferences folder inside that.
    Lion initially hides the System folders from you so you have to go to the Finder > Menu > hold down the option key and click on GO > Library to see it.
    Peter

  • I just switched from Outlook to Mail and now the sent messages are not being displayed.  Help, please.

    I just switched from Outlook to Mail and now the sent messages are not being displayed.  Help, please.

    Back up all data. Rebuild the mailbox.

  • I am 13 and I am very enthusiastic about Apple. At the moment I am reading a Steve Jobs auto-biography and I noticed something that Steve Jobs did in his early life was join the Hp explorers club.  Are there any companies who still have clubs?

    I really want to start making electronics as I plan to do a course on the subject
    I would be so grateful if you can answer my question
    I am 13 and I am very enthusiastic about Apple. At the moment I am reading a Steve Jobs auto-biography and I noticed something that Steve Jobs did in his early life which was joining the Hp explorers club.  Are there any companies who still have clubs?I really want to start making electronics as I plan to do a course on the subject.
    I would be so grateful if you can answer my question.

    Good catch! Yes there was a time when many companies and other organizations did that sort of thing. Now not so much.
    Intel still sponsors clubs see http://www.computerclubhouse.org.
    You might also check around, there might be after school programs, sometimes the YMCA or Boys & Girls Clubs have programs.
    good luck

  • The types of the parameter field and parameter field current values are not compatible.----

    HI,
    I am attempting to set report parameters in my .jsp code via URL parameters.
    I am able to set the report name, server connection dynamically however when attempting to set the Parameters I receive:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKParameterFieldException: The types of the parameter field and parameter field current values are not compatible.---- Error code:-2147213303 Error code name:invalidParameterField
    The parameter on the report is a String Type, named for this example p1.
    The value that p1 represents is LERAD
    My code:
    String stringValue = request.getParameter("p1");
    CRJavaHelper.addDiscreteParameterValue( clientDoc, "","p1", stringvalue);
    returns the above mentioned error.
    I have tried:
    String stringValue = (String)request.getParameter("p1");
    which returns the above error
    And;
    String stringValue = new String(request.getParameter("p1")).toString();
    which returns
    java.lang.NullPointerException
    java.lang.String.<init>(Unknown Source)
    org.apache.jsp.callReport_jsp._jspService(callReport_jsp.java:105)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
    I notice that the CRjavaHelper.java declares this addDiscreteParameterValue as accepting an Object type for the newValue.
    Any ideas???

    Hi,
    nevermind.
    case sensitivty strikes again.
    my URL param was P1 ( case sensitive)

  • Playbook and Windows XP : Media Options are not available

    Hi, hoping someone can help me as two lengthy calls to RIM have yielded no results.
    I am running Windows XP SP3 with spec well above the min requirements for Blackberry desktop software, of which I downloaded the latest version from RIM's site today.
    Software recognises the PB and connects fine (displays PIN etc) yet I get two different errors:
    1) Device Options > Media
    "Media options are not available". A problem occured while attempting to connect to your Blackberry device
    2) File > Get Started (dragging and dropping files)
    "Media services are not available". A problem occured while attempting to connect to your Blackberry device
    I've redownloaded the BDM software twice (both options for PC > and Sync >) with no result. I've tried different USB ports (same wire) and the same problem.
    I notice when right clicking on the Device Manager > Properties that I see under Volumes "Internal Storage Not Mounted" which I doubt is helping.
    Playbook Storage and Sharing Options have fiel sharing turned on, and UBS connections = Auto Detect (tried "Connect to Windows") and no result.
    Any ideas?

    I may have a workaround for all you fellow sufferers.
    In your playbook tap the information icon (uppermost right corner).  Tap about and where it says view information about your tablet tap the down arrow and select network.  There you will find one or two IPV4 addresses one for usb the other for wifi. 
    In Windows (7 don't know about XP or Vista click on start and in the search bar type the following
    run \\either IPV4 address.
    With any luck, Windows explorer will  pop up giving you access to your playbook for file transfers.
    Once you have done that, and if you prefer a two panel file manager as I do for file transfers, download and install a program called FreeCommander.  This program will allow you to access a network drive from somewhere in its top menu (can't recall where at the moment and I'm not in Windows).  Up will pop a screen asking you for a drive letter to be assigned (take your pick) and a location.  In this area type \\either IPV4 url\media.  You should now be able to access this drive from FreeCommander and easily transfer files to and from your playbook and computer.
    Don't guarantee that this will work for you but it has for me.
    Allan

  • When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.

    Problem:
    When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.
    Any help that you can provide in helping my iPhone accurately sync with iPhoto and iTunes will be greatly appreciated.
    Symptoms:
    1)   Sync:  It’s not completing the sync.  Below, I’ve provided all of my settings from the iTunes Summary tab so that you might tell me if I’ve selected any incorrect options.  I prefer to sync the “old school” way – by connecting to the computer – as opposed to syncing over the cloud. Perhaps this is what’s causing the problem? Here is a list of the steps displayed in the iTunes window as the sync progresses:
    waiting for sync to start (step 1 of 7)
    backing up (step 2 of 7)
    preparing to sync (step 3 of 7)
    determining apps to sync (step 4 of 7)
    preparing apps to sync (step 5 of 7)
    importing photos (step 6 of 7)
    waiting for changes to be applied (step 7 of 7)
    syncing apps / copying 1 of 4 (App name) (step 7 of 7)
    canceling sync
    apple icon
    2)   Photos: I've selected only certain of my iPhoto albums to sync to my iPhone.  All of the albums are correct/complete in iPhoto.  All of the albums are listed on my iPhone, both before and after the sync, but the albums are empty (no actual photos) before and after the sync. Perhaps this is tied to the fact that the sync isn’t completing, but because “importing photos” is one of the steps that the incomplete sync displays, I don’t know.
    3)   Apps: When I launch iTunes and click on the Apps folder under the Library listing, then click on the Updates tab, iTunes searches for any Apps needing to be updated and provides a list.  If I click on Update All, the Apps are successfully updated in iTunes.  But, when I plug in my iPhone so that the updates will transfer to the apps on my iPhone, the updates don’t transfer to the apps on my iPhone and those apps still reflect that they need updating on the iPhone.
    Other Potential Pertinent Info:
    The flash memory hard drive on my MacBook Air recently died (perhaps a month or two ago).  Apple had emailed me about a known issue and literally the next day, my MacBook Air crashed.  I installed a new flash memory drive and re-installed everything from a backup off of an external hard drive.  Everything seems to be working fine; it recreated accurately all of my software and data, including iPhoto and iTunes, the pictures and songs (respectively) for which are stored on that hard drive, as opposed to being on the flash memory in the MacBook Air itself.  However, I don’t recall if the start of the sync problem described herein started happening at the same time that I replaced the flash memory drive.  All I know is that the computer is working perfectly in all respects and that even as the sync is failing, it at least says that it’s doing the right things and looking in the right places (e.g., the list of albums on my iPhone matches the list of albums in iTunes, etc.).
    Settings/Status:
    MacBook Air
    OSX v. 10.9
    iPhoto ’11 v. 9.5 (902.7)
    iPhone iOS 7.0.4
    iTunes v. 11.1.3 (8)
    Summary Tab
    Backups (This Computer)
    Options
    Automatically sync when this iPhone is connected
    Sync only checked songs and videos
    Photos Tab
    Sync Photos from iPhoto (429 Photos)
    Selected albums, Events, and Faces, and automatically include (no Events)
    Albums – 9 are selected

    You need to download iTunes on your computer. iOS 6 requires the latest version of iTunes which is 10.7.

  • Attachments and history of my emails are not seen by Windows users

    attachments and history of my emails are not seen by Windows users

    Just guessing at what you mean, try this:
    In Mail, while composing a message, go to Mail's menu and click:
    Edit > Attachments > Always send Windows-friendly attachments

  • HT201322 itunes 11.0.3 - in my iTunes library I can no longer see purchased TV shows and Movies that are not downloaded to my computer. also In my Itunes account i have no hidden TV shows or Movies

    I'm running itunes 11.0.3 -
    in my iTunes library I can no longer see purchased TV shows and Movies that are not downloaded to my computer.
    In my Itunes account i have no hidden TV shows or Movies
    I used to be able to view all cloud and downloaded content.  I no longer can.

    There used to be option to show items that are in the cloud in your library, but I can't find where that now is (unless it's been removed). You should be able to see what items that you can re-download via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page (at the top right of that there should be a 'not on this computer' button)
    Edit : Just seen your reply, though I don't appear to have that setting on mine.

  • How do I pull backup files (pictures) from another device to my new device, and merge multiple backups that are on the same iCloud account?  I have an iphone4 and iphone5 backup.  I want to pull photos from both into my new iPhone5

    Have multiple iPhone backups across 2 iPhones and 3 iPads.  I need to pull backup files and pictures off of backed up devices that are not my current in-use device.   How do I do that?  They are all under one apple ID.

    If you still have the devices, import them to your computer (see http://support.apple.com/kb/HT4083), then sync them to your current device.  If they are only stored in backups, the only way to access them is to restore the device to the entire backup.  Note: you can only restore photos in an iPhone backup to another iPhone, and from an iPad backup to another iPad.  If the backups are on your computer, you may be able to extract the photos from the backup using 3rd party software such as iPhone Backup Extractor.

  • How can I transfer photos from my comp to my ipad2.I have the connection kit and can transfer photos that are direct from camera BUT if I transfer photos from comp to card it will not recognize them ????

    how can I transfer photos from my comp to my ipad2.I have the connection kit and can transfer photos that are direct from camera BUT if I transfer photos from comp to card it will not recognize them ????

    To sync photos from a Mac or Windows PC to your device using photo applications
    Make sure you have the latest version of iTunes installed.
    In iTunes, select your device's icon in the Devices list on the left.
    Click the Photos tab.
    Choose "Sync photos from."
    On a Mac, choose iPhoto or Aperture from the pop-up menu.
    On a Windows PC, choose Photoshop Album or Photoshop Elements from the pop-up menu.
    Note: Some versions of Photoshop Album and Photoshop Elements don't support collections. You can still use them to sync all your photos.
    If you want to sync all your photos, enable the option for "All photos, albums, events, and faces." If you want to sync photos from only some albums, events, or faces, enable the option for "Selected albums, events, and faces" and then select the albums you want. If syncing on a Mac with iPhoto version 6.0.6 or later, you may enable the option to "Include videos" to sync videos directly from iPhoto to your device. (Requires iOS 3.0 or later).
    Click Apply.
    To sync photos from a folder on your hard disk to your device
    Drag the images you want into a folder on your computer. If you want images to appear in separate photo albums on your device, create folders inside the main folder and drag images into the new folders.
    In iTunes, select the device icon in the Devices list on the left.
    Choose "Sync photos from."
    Select Choose Folder from the pop-up menu and choose your main image folder.
    Click Apply.

  • My wife and I share the same email address and Apple ID.  We are not able to send and receive Text Messages to one another.

    My wife and I share the same email address and Apple ID. We are not able to send and receive Text Messages to one another. Is the cause of this because we share the same Apple ID? Will we have to set up 2 separate primary email addresses to be able to  send and receive Tex Messages to one another? Like I said, we share the same email address and woul like to keep it that way to keep up with our email together. Is there a way to by-pass having to set up 2 primary emaill addresses if this is the problem?
    Thanks.

    go to the settings and turn off imessage
    but that don't change the issue that you will never be able to facetime eachtoher
    the appleID is really meant as the handle that identify you it was not meant to be shared
    but can see that people may want to do not buy apps more then once

  • For itunes 11: movie that are not purchased via itunes are loaded into and catagorized as "home videos". I want all of my movies in one spot under Movies as they always were. How can i tweak this?

    for itunes 11: movie that are not purchased via itunes are now loaded into and catagorized as "home videos". I want all of my movies in one spot under Movies as they always were. How can i tweak/resolve this?

    Cdaver wrote:
    I have this issue too and want the same result, another feed suggests selecting the movie, going to get info, and changing this under options, but I suppose you have to do that movie by movie.
    You can select all the movies you want and change them at once.

  • I recently purchased a new Macbook Air and used migration to transfer old files from my old PC to the Mac, and now there are songs that I purchased through Itunes on my phone that are not on my Mac, how do I transfer these songs from the phone to the Mac?

    I recently purchased a new Macbook Air and used migration to transfer old files from my old PC to the Mac, and now there are songs that I purchased through Itunes on my phone that are not on my Mac, how do I transfer these songs from the phone to the Mac?

    dnunn wrote:
    ... how do I transfer these songs from the phone to the Mac?
    Transfer Purchases  >  http://support.apple.com/kb/HT1848
    Download Past Purchases  >  http://support.apple.com/kb/HT2519

Maybe you are looking for

  • Error V2 005 when creating a sales order from a quotation

    I hope someone can come up with some ideas to help me with this error. My client is creating a sales order from a quotation and immediately on the first screen the error V2 005 pops up. The quotation was not created with reference to any previous doc

  • Remediation in GRC RAR

    Hi, After Running the Risk Analysis under Informer Tab in RAR Component, there is an option to do Mitigation or Remediation directly. The Mitigation is working fine but coming to the Remediation the Submit button is disabled. Please let us know the p

  • Actions and extensions

    Hi all So here's my issue. I have a project on illustrator, with multiple documents (or a single multipage doc) with a design and a different QRCode placed at the same place on all pages. So I guessI need to create an action that will duplicate a pag

  • N97 fm transmitter...................................

    my phone freeze when i use the fm transmitter...... after finish 1 song.... my phone freeze...... cannot switch to other song...... help.....

  • Long dashboard page names

    Hello. I have a problem with the name of a dashboard pages. Names are very large and need to divide them by more than one line. Example: "Cost Price Maintenance" to "Cost Price Maintenance" I tried to follow the instructions found in this blog: http: