Search results different for two machines on same network with same version of Lync (2013)

When searching by Department in Lync 2013, one machine displays the individuals who are members of the department while the other machine just lists the group.  The same machine that displays just the group occasionally will not show contact information
(work phone, department, title) for individuals either but the other machine will.  Two different Windows 7 machines but running Office 365 Lync 2013 client on the same network.  I have cleared Lync cache and downloaded the latest address book. Any
thoughts on this? 
Thanks,
JARED

This isn't an explanation for what's happening, there could be many things wrong.  But, it might be worth a shot to avoid the offline GAL search and go to an online web search only.  This may get you more consistent results.
To test, create a new policy and assign it to a couple of users like this:
New-CsClientPolicy -Identity WebSearchClientPolicy -AddressBookAvailability WebSearchOnly
Grant-CsClientPolicy -Identity UserA -PolicyName WebSearchClientPolicy
Grant-CsClientPolicy -Identity UserB -PolicyName WebSearchClientPolicy
If that works, you could change your global and other client policies to use the same method.  There would be a bit more of a load on the server, so if you have thousands and thousands of users you may want to plan accordingly.
Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
SWC Unified Communications

Similar Messages

  • XI testing for two SAP R/3 systems with same system id/logical system

    Hi
    We are currently in the process of upgrading our R/3 4.7 to ECC 6.0 and plan to maintain dual landscape for DEV & QA (4.7 & ECC 6.0) for a period  for testing and maintaining existing applications for fixes etc. The second DEV & QA (upgraded to ECC 6.0) are copy of respective systems and these systems are created automatically under technical systems in SLD by auto update (RZ70).
    The question is, can we use the same XI system for testing inbound/outbound interfaces for both the systems i.e 4.7 & ECC 6.0 at the same time.  I am aware of the fact that XI Technical/Business sytems dependent on unique logical systems, so we cannot create new business system for the upgraded DEV-II ECC 6.0 system. 
    For your information, we have two slds (one for XID/XIQ and second one for XIP).
    What are the options without disturbing & maintaining the current XI system set up?
    1) Can we change current Business systems e.g DEV010 to use new technical system i.e DEV-II ECC 6.0 for testing for a period and switch it back to DEV-I 4.7 technical system?
    2) or change logitical system name of DEV-II ECC 6.0 and create new business sytem in SLD without interfering the existing setup and modify/create interfaces to use this new business system?
    3) Do we need to refresh cache from time to time in XI ?
    4) Any other implications
    We will be upgrading XI to PI 7.1 after ECC 6. 0 Upgrade.
    Any views on this would be highly appreciated.
    Regards
    Chandu

    Hi
    Technical System was created in the SLD automatically after RZ70 configuration in the new DEV-II system. We then modified Business System to use the new Technical system and carried out following steps:
    1)     Original Idoc metadata was deleted from XID
    2)     The port definition  was deleted
    3)     A new port definition was created for new system
    4)     The metadata for each idoc type used was re-created in IDX2 , using METADATA -> CREATE
    5)     This brought in all known versions of the idoc segments, including the 7.1 version.
    I have already checked the guides suggested for our upgrade and we are thinking of going ahead with fresh installation and migrating the interfaces.
    Regards
    Chandu

  • How to use same RESULT SET for two different events

    hello friends,
    I need to use same result set for two different events. How to do it.
    here My code,
    private void jComboBox1ItemStateChanged(java.awt.event.ItemEvent evt) {
    // TODO add your handling code here:
    try
    String selstate,selitem;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:tourismdatasource","sa","");
    selstate="select * from tab_places where state=?";
    PreparedStatement ps=con.prepareStatement(selstate);
    ps.setString(1, jComboBox1.getSelectedItem().toString().trim());
    ResultSet rs=ps.executeQuery();
    if(rs.next())
    jTextField1.setText(rs.getString("place_ID"));
    jTextField2.setText(rs.getString("place_name"));
    jTextField3.setText(rs.getString("category"));
    byte[] ba;
    ba=rs.getBytes("image");
    ImageIcon ic = new ImageIcon(ba);
    jLabel6.setIcon(ic);
    in=true;
    catch(ClassNotFoundException cfe){JOptionPane.showMessageDialog(null, cfe.getMessage());}
    catch(SQLException sqe){JOptionPane.showMessageDialog(null,sqe.getMessage());}
    Now i need the same Result Set(rs), in another event(jButton6ActionPerformed),
    private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
    }  how do i get dat resultset,
    help me out

    One post wasn't enough?
    {color:0000ff}http://forum.java.sun.com/thread.jspa?threadID=5246634{color}
    db

  • Can I use same result set for two queries?

    Hi,
    Can I use the same result set for two queries?
    For example:
    ResultSet rs = null;
    rs = ps.executeQuery(query1);
    while (rs.next()) {
    rs = ps.executeQuery(query2);
    while (rs.next()) {
    Is it OK to use? or Is there any preformance issues?
    Appreciate your help.
    Thanks in advance.
    Prasad Vagolu

    Sure. You have a variable of ResultSet type. First you create a ResultSet and assign it to that variable. Then later you create another ResultSet and assign it to that same variable. Assigning an object reference to a variable takes essentially no time, and at any rate it isn't any faster to assign it to a different variable. Also, no matter whether you use one variable or two, you are still creating two ResultSets.
    However, you really should be closing your ResultSets after you finish using them. That's nothing to do with the assigning-to-a-variable question.

  • How to set a customized search results template for all users

    Hi.
    I know the customized search results views are stored in a file called pne_portal.hda that resides on every user's subfolder in data/users/profiles/...
    Is there a way to set a customized search results template for all users? If it's impossible, is there a way to modify the Headline view? I'm not able to find the resource or template where this view is.
    Thanks in advance.

    I wasn't able to understand what was meant by this post. Therefore, I modified the standard template HeadLine View.
    Columns for this template are defined in the include slim_search_result_table_header_setup (in std_page.htm).
    Here is the modification of the code:
    <$if customTemplateId and not (baseTemplateId like customTemplateId)$>
              <$columnsString = utGetValue("customlisttemplates/" & strLower(customTemplateId), "columns")$>          
              <!-- Modify START by Oracle-->
         <$else$>
    <!-- here add default fields -->
              <$columnsString="dDocName,dDocTitle,dInDate,dDocAuthor"$>
    <!-- here add your custom fields -->
              <$columnsString=columnsString&",xComment"$>
              <!-- Modify END by Oracle-->
         <$endif$>

  • Regarding install of obiee11g on two machines Should be part of same domain

    Hi Experts,
    Actually we need a requirement like this i.e
    I want to install obiee 11g on two machines
    Should be part of same domain
    But want to run only one service on one host
    Like bi server on one host
    And presentation on another host
    Can any one please help on this
    Thanks in Advance,
    Siva Shankar

    Hi,
    you can get all the info the installation and configuration guide.
    Here´s the link:
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/b31765.pdf
    http://gerardnico.com/wiki/dat/obiee/installation_11.1 -- Step by step install obiee plese refer this link .
    Weblogin install steps._
    http://www.togotutor.com/weblogic/windows-weblogic-10-3-4-installation.php -- please refer the below link step by step with screen shot.
    Cluster steup:_
    You have to modify below config files OBIEE 11g clustering setup.
    1. Nqsconfig
    2.Nqsclusterconfig
    3.odbc.ini
    4.web.xml
    5.instanceconfig.xml
    Please refer the below links.
    http://www.rittmanmead.com/2010/07/obiee-11gr1-scaleout-clustering-and-high-availability/
    Please send me your mail id I will provide obiee installation link on my blog -- in this blog step by step is ther how to install obiee.
    Hope this help's
    Thanks
    satya

  • Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE).

    I have a 3 node cluster that has replica setup to replicate to another cluster off-site.
    Suddenly one of the servers is not replicating with the error:
    Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE). (Virtual Machine ID CC0FD4CC-F9B7-4C68-ABE8-B7D52A87899F)
    All other servers are replicating fine so there cannot be a permissions or connectivity issue between the 2 clusters.
    This server has 2TB of data so I'd rather not have to start the replication again.
    Does anyone have any pointers?
    Thanks.

    Hi drensta,
    Based on my knowledge , "hyper-v replica broker " is needed for failover cluster replica .
    Here is a link for "Why is the "Hyper-V Replica Broker" required?"
    http://blogs.technet.com/b/virtualization/archive/2012/03/27/why-is-the-quot-hyper-v-replica-broker-quot-required.aspx
    Hope this hleps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can I connect two apple tv on same network and same apple ID at a time ?

    Can I connect two apple tv on same network and same apple ID at a time ?

    Welcome to the  Discussion Forums.
    Yes you can do all that without needing to keep plugging things in and out. You will still need to manually turn on the receiver and turn down the volume from the tv though.

  • Creating  file on network with same name

    Hello All,
    I have created the A0001BOE20060001.txt file on my machine & i want to create same file with same name on the different machine,
    i m able to copy all data in that file & recreate it on the server but i have problem with how to GET same file Name
    As i m creating a new file & writing data on the 1.txt which i m creating on the server
    How should i recognize the file name & create the same file on the server????

    Is this on Windows?
    I believe that java.io.File works with UNC paths. For example, if you have a network resource on the share myshare on machine my-pc, you could do something like:
    File f = new File( "\\\\my-pc\\myshare\\myfolder\\myfile.txt" );
    Note that you have to escape backslashes. You'll also want to be sure that you have permission to access the share - it won't prompt you for a password, so you must have already authenticated using Explorer or net use.
    Thanks,
    Brian

  • How to register the same schema with same URL

    I'm getting ORA-31085 error when try to register the same schema with same URl.
    My requirement is that I should be able to reregister the same schema with the same URL .
    I'm using the following function :
    PROCEDURE validateXmlSchema(inp_xmlMsg IN VARCHAR2,
    out_isValidDoc IN OUT NUMBER,
    inp_xmlSchema IN OUT VARCHAR2,
    out_varchar_notused OUT VARCHAR2)IS
    xmldoc XMLType;
    res number;
    BEGIN
    xmldoc := XMLtype(inp_xmlMsg);
    res := xmldoc.isSchemaValid(inp_xmlSchema);
    IF (xmldoc.isSchemaValid = 1) THEN
    out_isValidDoc := 1;
    ELSE
    out_isValidDoc := 0;
    END IF;
    END validateXmlSchema;
    This is used recursively.Until the schema is not validated for a given URL this function should keep on throwing error and once the schema is validated the data should be inserted in the DB.
    But its not happening as of now instead the ORA-31085 is thrown second time.
    Plz provide pointers to solve the issue.

    "mjs" <[email protected]> wrote in message
    news:g7kjk5$o6$[email protected]..
    > "mjs" <[email protected]> wrote in message
    > news:g7gl2g$i3d$[email protected]..
    >> "Zorrrro" <[email protected]> wrote
    in message
    >> news:g7gcjv$a6n$[email protected]..
    >>> I'm completely nuckered trying to find an answer
    for this...
    >>>
    >>> Does anyone know how to keep the same width an
    position of the submenus
    >>> of a
    >>> horizontal dropdown menu?
    >>> Thank you in advance.
    >>>
    >>> Cheers.
    >>
    >> Doesn't a simple style="width:200px" in the input
    tag work?
    >
    > I'll asume the answer is "yes", then. ;) You're welcome.
    I believe the OP is talking about a dropdown menu like this
    one
    http://www.tjkdesign.com/articles/keyboard_friendly_dropdown_menu/default.asp
    not about a "select menu".
    I could be wrong though...
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    http://developer.yahoo.com/
    helps you build applications and mashups

  • I cannot connect my iPhone 4S to my home wifi. When trying to connect it says I have the wrong password, but I can connect my MacBook to the same network with the same password. I have tried to restart my router, reset my network settings, fail!

    Hello, I am having some major troubles connecting my iPhone 4S to my home wifi. When I try to connect on my phone, it says I have an incorrect password. That's not possible because I can connect my MacBook to the same network with the same password. I have reset my network settings on my phone, reset my router, called apple support, triple checked I was trying it in correctly, I have no clue what's going on.
    The only thing different is I just moved, but I have the same router/phone/internet provider.
    I've seen some discussions of router security options being the problem, I have my router connected to : WPA-PSK [TKIP] + WPA2-PSK [AES].
    The other options are: WEP , WPA-PSK[TKIP] , WPA2-PSK [AES] , WPA/WPA2 Enterprise.
    My troubleshooting and understanding of all this is pretty limited, my applecare service did not help, please can anyone help me?
    Thanks!

    If the issue happened after an update, you may want to go into an Apple Store. Be sure to let them know exactly what's wrong with the device.

  • Can You Transfer iTunes from One Log-in to another Log-in on the SAME computer with SAME account?

    How do You Transfer iTunes from One Log-in to another Log-in on the SAME computer with SAME account?

    Move the files to the /Users/Shared/ folder and then to the other account's home folder.
    (85927)

  • Same Safari, same version, same OS, but behaves differently on two machines

    I have Safari 5.1.1 installed on two machines. Both have 10.6.8 and Safari 5.1.1 installed but some web pages look differently on both machines. There seems to be a problem with browser window sizes. Hmmm ...

    Could it be that the software on the installer CDs and via Software Update is "different" from the file I am able to download from Apple's own company website? Hu ... can you make it more complicated?
    Apple - Support - Downloads

  • I get zero search results even for items I know are at the store. Anyone else getting this behavior?

    On two different machines, one running Snow Leopard, the other running Yosemite, iTunes does not display search results for most searches, including items that I know are at the store. I'm just wondering if anyone else has experienced anything similar?

    Yes.  I find that I have to revise my search several times to finally find what I want.  If I can't find it under the artist, I might find it under the title of the song, or some variation of the title.  It seems to be more common with older songs or movies.  This has been true even before the current update.  Case in point, recently I couldn't find a song I wanted under the artist's listing.  I searched under the name of the song, and not only found the song, but also some albums that hadn't been listed under the artist in my first search results.

  • SharePoint 2013 custom search Result Type for "Documents" not showing up as option

    I'm trying to create a custom search Result Type called "Documents" that will filter to MS Office filetypes and PDF's.
    However, when I perform a search, although many of these types of files show up in the results, I don't have "Documents" as a Result Type option.
    Here are the steps I'm following:
    From my Enterprise Search Center subsite: Site Settings > Manage Result Types.
    New Result Type.
    Name: Documents
    Source: Documents (System) - this out-of-the-box Result Source appears to cover the filetypes I need.
    Types of content: I've tried leaving it blank (to match all content) and specifically picking the types I want.
    What should these results look like? Office Document Item.
    Check Optimize for frequent use.
    Save.
    I then go back to my search center and search for a common keyword. Many in-scope file show up in the search results. However, under Result Type, I don't see "Documents," even if I click "SHOW MORE."
    Please advise.
    Thanks.
    Brad

    @Mikael As you say, to display the exact results when we click a result source, we should implement logic code to check whether item should be displayed. I have followed steps nearly the same as the topic owner but I saw nothing different between Everything
    and my custom Result Type.
    Here are the steps I'm following:
    Create a custom result type, named Job, and specify a custom display template for it.
    Set its condition to filter list items that have JobName site column ( JobName is site column's managed property) equal of any "IT" or "Doctor".
    I search for "Perter", it returns 5  items with Everything. I expect that it should return 3 items since only those items contain JobName site column.
    Search is fun but rather headache sometimes, give me advise please :)
    Thanks,
    Hoan.

Maybe you are looking for

  • I don't feel safe replacing this. I don't think the customer service rep understood​.

    I just talked to an agent and described a Verizon box in our apartment. We just moved in and this is a utility box in our apartment that we are dealing with. It's in no way connected to my current service as it was there before we moved in. The batte

  • ICloud account/mail doesn't work! smtp problem?

    When I want to send an email from my iMac, "mail" asks me for my password and says that the "smtp.mail.me.com" server is not accepting my iCloud password. When I enter it, the warning is coming again and again. It works well on my iPhone, even with t

  • I have Problem With app Movies(Vidoes) .....

    The first time I bought the phone I copied a video file and it had subtitles in my pc but in the phone or we can say in this app the subtitles doesn't appear i tried all formates but it didn't work ,,, and there is another new problem b4 b4 the ast u

  • Installing SAP R/3 with SQL Server 2005..

    Hi, Microsoft is about to release "SQL 2005" in Nov05. Has anybody in here thought of installing/upgrading SAP on MS-SQL's latest version of the database server. On doing some research on the net I noticed that Microsoft has already upgraded their SA

  • Why you tube online not work anymore on 5800 xm?

    my video streams worlk on all sites except you tube since yest