Search in a specific library

hi,
i tried this post:
http://social.technet.microsoft.com/Forums/sharepoint/en-US/64278225-28c0-4b43-afa5-d402b8bb709e/how-to-search-only-to-some-specific-libraries-in-sharepoint-2013
but i don't have any result if i put in the searchbox
path:http://monsite/malib
Do you have a solution and how to search in multiple lib?
thanks

An workaround for a specific library instance might be to add a forms web part onto a page with the list and then hook it up within SharePoint Designer to all the columns you want retrieved.
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.

Similar Messages

  • Trying to identify what to change for user who has permissions on a library but gets no search results from the library

    We are running SP 2010 service pack 2.
    Search is working for people in general.
    Yesterday user Y asked me why they (user Y) does not get results when they search for documents in the library. They get results back when searching other libraries.
    The library has a limited number of users who can access.
    The user is explicitly added to the library's permissions with Read permission.
    When I look inside the library at specific documents, the user is listed as having Contribute,Limited Access privs on each document.
    As an admin, I have accessed the site and performed searches and gotten results. Others on the site with various permissions get results back.
    So  it appears that search is working.
    What other things can I check - via powershell perhaps - to help identify and resolve user Y's dilemma?

    What we found is this.
    At the site level, only 4 users have access. At the library level, 3 more users were added directly and given read permission.
    These three users could see the contents of the library, read the documents of the library, but when they attempted to search the library, got "Access Denied".
    I was able to negotiate for a resolution of this problem for us to create a new SharePoint group for the site, give it Read permissions,
    and add that group to the library permissions. I informed the owner that he could check other libraries and lists and remove that group if there were things there that should not be accesible.
    I also warned him that if he were to put something confidential in, say, the announcements section, he would need to remove the group from that list as well if he didn't want the people to see that.
    So, the users now can see the results page, which is returned as a URL immediately under the site.
    There were a couple other work arounds that we could have tried - moving the shared library to its own subsite with different permissions than the parent site, or having the users use the enterprise search and to refine the results down to the specific library.
    Thank you for your question!.

  • Smart Album search of a specific album?

    Is it possible to limit the query of a smart album to a particular album. The "find" command seems to limit a search to a specific album while smart albums seem to query the entire project. I would like to have a smart album limit its search to a particular album (or possibly several particular albums).
    I am using Aperture 1.5.3

    Smart Albums can search within a Project, the entire Library or a all the Projects within a Blue Folder, depending on where you made the Smart Album. In other words, only 'containers' that images actually live in - remember that Albums only contain references back to Projects.
    Ian

  • Searching for a math library

    Hey everyone,
    some time ago I came across an open source math library, which was contained in a single c header file. As far as I remember it contained thinks like linear algebra algorithms and simiar stuff. Unfortunately I can't find it anywhere on the web.
    Does anyone know where to find this particular lib?
    Greetings and thanks,
    Florian

    Thx for your answers to both of you. I'll have a look at those libs.
    They aren't the specific library I've been searching for but they look quite interesting nonetheless.
    P.S: http://www.swox.com/gmp/ doesn't seem to work right now. I'll try again tomorrow.

  • How do I search for a specific word in the code using Dreamweaver?

    I need to search for a specific word in the code for all of my website pages. How can I do that using Dreamweaver?

    To search local files of a Defined Site in DW...
    Open the Find & Replace tool with Ctrl + F
    Change the Find In dropdown to Entire Current Local Site
    Change the Search dropdown to Text or Source code
    Add the text to find in the Find field
    Add the text to replace in the Replace field (or nothing if you just want to delete the text)
    Hit Replace All

  • How do i search for a specific artist in iTunes store on iPhone 5?

    How do i search for a specific artist in iTunes store on iPhone 5?

    Open the iTunes app > Search > then type the Artist's name

  • Search - search for a specific list in the root site

    Hello ,
    I have a SharePoint portal .
    The structure is  "Root Site >> Sub site 1" && "Root Site >> Sub site 2" .
    I configured search on the server.
    in the "Search Result web part" , I set  "{SearchBoxQuery} Path:{Site.URL}" in the query text because I want when user in "Sub site 1" , search only through this site.
    The root site has a "Document Library" .
    I need when user on sub site 1 and search for a word . I need to search only on this site and just a document Library on the root site .
       How Can I do that ?
       Thanks
    ASk

    Hi himo,
    According to your description, my understanding is that you want to search only on one library of the root site and the subsite 1.
    I suggest you use the following query to query the result in the search result web part.
    {searchboxquery} Path:http://server/rootsite/subsite1 OR  Path:http://server/rootsite/library
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How do I search for a specific name of an email sender?

    I'm trying to locate, in the easiest way possible, a name that should have appeared in my inbox... How do I search for a specific name?

    type it in the big box on the toolbar and press enter.

  • How can I adjust the search bar to search within a specific website?

    I used to use Chrome (still miss it a little bit), but Firefox has continually grown on me.
    One feature I do miss from Chrome being able to search within a specific website from the search bar. For example, I was able to type in amazon.com, then pressing tab, and type in a specific search term, such as "The Terminator." When I pressed enter after typing "The Terminator," Chrome would automatically take me to Amazon's search results for "The Terminator."
    And it wouldn't just be Amazon either; pretty much any site that had a searchable database, Chrome would be capable of utilizing this feature. Is there any way to replicate that in Firefox?

    hello crachor, probably keyword search can offer you a similar functionality in firefox: [[How to search IMDB, Wikipedia and more from the address bar]]

  • How to Search for a specific element in a MultiGraph?

    Hi there
    Im trying to implement a Multigraph ADT in Java. Multigraph is a graph that has multible edges connecting a node. I assume you all know what a Graph ADT looks like.
    So i think ive got all the basic methods functions of a normal graph/mulitgraph and now i want to search for a element in it
    The question is how will i so that?
    Do i use a breadth first search?
    But i thought a BFS traverses all the elements in a graph? And how can i use a BFS to search for a specific element in a graph?
    Thanks

    Hey there
    thanks for your reply but i still some query.
    I thought of doing that but i want to remember the nodes i revisted to get to the target (not all - but the quickest route to that node)
    My design so far is:
    have 3 Interface namely Graph, Node & Edge.
    Classes will inherit those interface to provide the actual implementation as i want the details/coding to be abstract meaning i can give many different way of implementations.
    The graph class will add nodes & edges where when adding edges, edge will store 2 nodes in it respectively source & destination nodes.
    Both Node & Edges will be stored in graph using some data structures atm (arrayList i presume)
    My Design is that i want to (my aim of the task of searching) search for a node in the multigraph by inputting (maybe 2 nodes) into method - start node target node! The method should return a list of nodes to get to the target node.+
    So so far i have this wee algorithm in mind:
    +1. Input start + target node as parameters+
    +2. Use BFS to search the graph+
    +3. When reached target node - halt+
    +4. return the list of nodes that visited to get there (but not all - only the precise & fastest)+
    So will that work?
    If so how do i go about doing implementation?
    Thanks

  • Search of a specific User in Outlook 2010 show different syntax

    Hi
    when I search for a specific user under sent items in outlook 2010 it shows for e.g. max mustermann in different ways
    Max Musterman
    'Max Mustermann'
     [email protected]
    In my personal contact there is no contact like this. Any reason why it show this person in a different look?

    Hi Matthew,
    login to the outlook web access using the browser and try to search, if you are not able to find it may due to cache in the outlook
    Try to remove the Exchange cached mode and perform the action again
    Reconfigure your outlook and verify it
    Exchange Queries

  • HT204266 how to search for a specific app eg tetris in the app store?

    Hi is there anyone that can please help me on how to search for a specific app eg tetris in the app store? Thanks

    Hi Friend,
    You just write down the name of the app or for what the app is used for (eg, write down Notes and then will appear a lot of options), then download what you wish.
    Hope it will be helpful

  • The search only shows my library - no store. have version 12.0.1.26

    The search only shows my library - no store. have version 12.0.1.26. Once I upgraded the search itunes store disappeared. Any ideas?

    What are you viewing when using the search box ? If you are in the store then it should search the store - is that not happening ?

  • Narrow down search to a specific page?

    Hello,
    How can I narrow down a search to a specific page in a PDF document?
    For instance, I want to search only page 5.
    How can I do this?
    Is there any documentation that specifically tells you how to narrow down a search to a page number?
    Thanks
    Linda

    Actually, I need to find a particular page before I do a search on it.
    My problem is that I need to search a specific book mark in a large document, however, the particular name of the bookmark appears three times and I want to search all three of these bookmarks.
    Currently I am using the following to narrow my search to a specific bookmark:
    if (global.mainDoc.bookmarkRoot.children[i].name.indexOf("XYZ")!=-1) {
    // Do something
    Unfortunately there are three bookmarks with the same name of XYZ and my search only goes to the last bookmark named XYZ.
    I need to know how I can also search the other two bookmarks named XYZ.
    The three same named bookmarks appear one right after the other.  Since I am able to search the last of the same named bookmarks, I would like to then go to the previous page and search that page.  Similarly I would like to go to the previous page before that one and search it as well.
    I could obtain the number of the last bookmark named XYZ, subtract one from that page to obtain the previous page, and if there is a way to narrow a search to a page number I could search that page ,with the bookmark named XYZ, as well.
    Any help is greatly appreciated.
    Thanks
    Linda

  • Is it possible to search for a specific term or data in Numbers for iOS?

    I looked for similar questions, but all of the similar questions did not specify if they were talking about the Mac version or the iOS.  So I apologize if the question has been asked.
    Is there a way to search for a specific term or criteria in Numbers for iOS?
    My father owns a small business and has a large inventory of parts.  He wants a simple way to search his inventory for a particular part number and see how many of a the specific part number he has in his inventory, while not in the shop or having to call in.  He wants to take an iPad along with him.
    My first thought was to create an spreadsheet.  I have a basic knowledge of how spreadsheets work, and I don't think my father would like anything more complicated.
    I was thinking about making the 1st column list the part number, 2nd column list the quantity in the shop, 3rd column list the quantity in the truck.
    If Numbers for iOS is not able to do this, suggestions for alternatives are welcome.
    Thanks in advance

    Hi j4nitor
    Would the "Find" option in the "Tools" menu do the job?
    If you search for the part number, it will be highlightet, and with your outline for a setup, I guess that would give you the overview you are talking about.
    Hope it helps.
    Best regards
    Ole

Maybe you are looking for

  • TOC load times

    I'm using (Captivate 4) aggregator to create a single swf file containing multiple smaller swf files. I have the preloader setting in each file set as 1% and have each file compressed as much as possible. However the problem I am having is the toc cr

  • Downloading iTunes 7.02 Problems

    For some reason I keep getting the same error everytime I try to download the newest version of iTunes (7.02) The error message reads: "itunesSetup.exe is not a valid Win32 application" Has this happened to anyone else. How do I fix this?

  • Real time scenarios...

    hello ther ....i am simi .. iam new to sdn...i have my interview in sem bps..in a couple of days time..iam through with the theoritical bit ...my concerns are related to the questions that may arise about project scenarios....would be much obliged if

  • GL account is appearing twice in the report

    Hi Xperts, We have a report in that particular report we can see the Balances of TOTAL COST OF SALES,Total wages & salaries,Total other staff costs,Total designing & merchantiging, Total selling, Total Depriciation,Total Distribution & TOTAL SUNDRY &

  • How access images from iPhoto Library?

    I appear to have done something terrible with one of my iPhoto libraries. Over the holidays, as I recall, I had attempted to move the iPhoto library from the computer to an external hard drive. This particular library, now on the external drive, show