Searching work servers with Spotlight

Having issues with Spotlight, it seems to be working fine locally but cannot retrieve the files and folders required from any servers that we have in our office, which is frustrating when looking for older files on our Archive etc...
Is there a preference that I need to click on to allow this?
Any help would be appreciated,
Thanks.
G5 Apple Mac   Mac OS X (10.4.8)  

First of all, Tiger's Spotlight technology is not intended for Window servers. (See below)
Spotlight Support for Network Homes
"Perform a Spotlight search on network-based Home directories in addition to searching local hard drives."
Leopard will expand to search on servers running Mac OS X Leopard Server. http://www.apple.com/macosx/leopard/spotlight.html
"The Spotlight store retains information that the plug-ins extract in two separate indexes: one for metadata and the other for content. This provides important performance benefits, because Spotlight doesn’t waste time looking through its massive content index unless specifically requested. Each index is created on a per-volume basis, which means each disk or partition carries its own set of indexes for the information on that volume.
Spotlight works with most locally mounted volumes that can be read and written to, including FireWire and USB/ flash drives. Some volumes, such as Windows-formatted drives, are not indexed automatically. You can change this easily by opening the Info window for the volume in the Finder." http://images.apple.com/macosx/pdf/MacOSXSpotlightTB.pdf
For sure if you are searching network drives, use Command-f and make sure that the drive (volume) you are searching in is shared (connected) and selected. Keep in mind that the volume you are searching in may not be indexible, e.g., CDs, but can be searched using the (old) Find command.

Similar Messages

  • Searching for scripts with Spotlight

    I decided to ask this question on this forum because AppleScripters are the most likely to search for scripts with Spotlight.
    *First, here’s what seems to be the normal behavior of Spotlight:*
    If I open the folder “/Users/pierre/Documents/Loisirs/Informatique/Utilisation avancée/AppleScript”, type ⌘F and enter “Kind is Other” and “script” as the search criterion, I get 89 items in the +Searching “AppleScript”+ window.
    On the other hand, if I replace the previous criterion with “File extension is scpt”, I get 88 items in the +Searching “AppleScript”+ window, which is normal since one of my scripts is a script bundle, whose extension is “scptd”.
    Next, if I open my home folder, type ⌘F again and enter “Kind is Other” and “script” as the search criterion, I get 110 items in the +Searching “pierre”+ window, which again is normal since many of my scripts are outside of my “AppleScript” folder.
    *Now, here’s what looks like a bug:*
    If I replace the previous criterion with “File extension is scpt” in my home folder, I get only 3 items (instead of 109) in the +Searching “pierre”+ window, which obviously is nonsense.
    I have rebuilt permissions and reindexed Spotlight, without any difference.
    Any explanation?

    Hi Pierre
    Not a explanation, but a possible solution, try some of these ideas:::
    1) Restart Mac
    2) Rebuild the spot light index manually (I no you said you have done this, this is just a path to follow):
    a) launch terminal
    b) type this sudo mdutil -E /
    c) type in your admin password when prompted
    d) rebuilding index should commence (could take a while)
    3) clear the spot light caches and prefs:
    a) download "Yasu" from here and install
    http://jimmitchelldesign.com/yasu/
    b) enable "Reset System Prefs", "Clear System font Cache", "Clear local font cache", "Clear user font cache"
    click ok
    c) Restart Mac
    4) Kill the SystemUIServer:
    a) launch activity monitor, find process "SystemUIServer" highlight then click button quit process
    hope this helps
    Budgie

  • Search Inside Catalogs With Spotlight on Mac

    My wife is a pro-photographer and a Lightroom user; I'm tech support. We like to use small catalogs because they are easier to manage. The problem that arises is files become lost amongst the many catalogs with no way to search across catalogs for a given photo. To remedy the situation, I wrote a Spotlight importer that allows the Mac to index filenames inside LR catalogs. Here is a quick screenshot of me searching for the filename "HPDE" and Spotlight locating the catalog referencing this filename.
    I packaged up the Importer for install. You can read the technical details in my blog post or jump right to the download package. If you have any questions, feel free to follow up here, however I'd prefer that you add a comment to the blog post. Thanks!

    How to download
    Flour milling

  • Help cleaning up a script to search in Finder with Spotlight?

    I don't know much AppleScript at all, but managed to cobble together a script (invoked with Alfred) that opens a Finder window, sets the size, view options etc. and searches for Photoshop documents with the term passed from Alfred.
    As it's cobbled together I'm guessing there are much cleaner, efficient, and more elegant ways of doing this. Any help cleaning it up would be greatly appreciated. Here's the script:
    -- set q to "wobbly jelly" -- Test search
    on alfred_script(q)
              set theSearch to q
              tell application "Finder"
      activate
      open computer container
      -- Set the folder view
                        tell Finder window 1
                                  set the bounds to {630, 150, (630 + 1300), (150 + 1100)}
                                  set toolbar visible to true
                                  set the sidebar width to 180
                        end tell
              end tell
              tell application "System Events"
      -- Focus to the search field
      keystroke "f" using {command down, option down}
                        delay 0.4
      -- Type the search   
                        keystroke "kind:photoshop " & theSearch
              end tell
      -- Arrange by…
              menu_click({"Finder", "View", "Arrange By", "Date Modified"})
      -- Set to Icon View
              tell application "Finder"
                        set current view of Finder window 1 to icon view
                        tell icon view options of Finder window 1
                                  set icon size to 128
                                  set shows icon preview to true
                                  set shows item info to true
                        end tell
              end tell
    end alfred_script
    -- `menu_click`, by Jacob Rus, September 2006
    -- Accepts a list of form: `{"Finder", "View", "Arrange By", "Date"}`
    -- Execute the specified menu item. In this case, assuming the Finder
    -- is the active application, arranging the frontmost folder by date.
    on menu_click(mList)
              local appName, topMenu, r
      -- Validate our input
              if mList's length < 3 then error "Menu list is not long enough"
      -- Set these variables for clarity and brevity later on
              set {appName, topMenu} to (items 1 through 2 of mList)
              set r to (items 3 through (mList's length) of mList)
      -- This overly-long line calls the menu_recurse function with
      -- two arguments: r, and a reference to the top-level menu
              tell application "System Events" to my menu_click_recurse(r, ((process appName)'s ¬
                        (menu bar 1)'s (menu bar item topMenu)'s (menu topMenu)))
    end menu_click
    on menu_click_recurse(mList, parentObject)
              local f, r
      -- `f` = first item, `r` = rest of items
              set f to item 1 of mList
              if mList's length > 1 then set r to (items 2 through (mList's length) of mList)
      -- either actually click the menu item, or recurse again
              tell application "System Events"
                        if mList's length is 1 then
      click parentObject's menu item f
                        else
                                  my menu_click_recurse(r, (parentObject's (menu item f)'s (menu f)))
                        end if
              end tell
    end menu_click_recurse

    Mainly just grouping the separate cobbles together, although there is a shortcut that gets rid of all that System Events stuff for the find parameter.  Note that in Mavericks the icon view won't immediately update - changes will be applied when the window target changes.
    on alfred_script(theSearch)
      tell application "Finder"
        «event aevtspot» "kind:photoshop " & theSearch -- shhh - don't tell anyone...
        tell Finder window 1 -- Set the folder view
          set the bounds to {630, 150, (630 + 1300), (150 + 1100)}
          set toolbar visible to true
          set the sidebar width to 180
          set current view to icon view -- set the icon view
          tell its icon view options -- view options may not immediately update in Mavericks
            set icon size to 128
            set shows icon preview to true
            set shows item info to true
          end tell
        end tell
      end tell
      menu_click({"Finder", "View", "Arrange By", "Date Modified"}) -- Arrange by...
    end alfred_script

  • Searching photo keywords with spotlight

    Hi - I have been adding keywords to my photos - through Photoshop. Spotlight does search these keywords. The problem is, I also add "Author" data to the photos and I want to be able to search just by keyword - is there any way to narrow the search, or is there a third-party application that will do this. I can search within Photoshop's File Browse, but I am not crazy about the interface.
    Thanks

    Assuming you're using the ⌘F interface in Finder - you can select Keywords as a specific criteria option - click on Kind or Last Modified to change. If you give it a few seconds, it generates a list of all the keywords in the index allowing you to pick them from the drop down menu.
    Entering the term in the standard search oval, or on the menubar Spotlight offers some ability to narrow the search but its limited.

  • Browsing photos with Spotlight?

    Hello everybody!
    When I search some photos with spotlight is there any way to browse with the spotlight "slideshow" those folders spotlight find?
    I mean, I have photos of cars in a folder named "cars". When I search for car photos I have the searchword "cars" and I find that folder (cars), is there now any way to see those photos inside that cars-folder with the spotlight? Or should all the files be somehow named "cars"... I hope you got my point.
    Thanks in advance!
    -pd
      Mac OS X (10.4.3)  

    I have quite a few things that show up with the search term "flowers"--some image files (which you can see in slideshow by pressing the play button in the Spotlight window view), and a couple of folders. The easiest way to view a slideshow of the items in one of the folders is to double click the the folder in the Spotlight window, which opens that folder. Then select all the items, and control-click on one, and select "Slideshow" from the contextual menu.
    Francine
    Schwieder

  • Search / Spotlight doesn't work properly with my notes

    hi together,
    i have a strange issue with my iphone.
    when i search with spotlight or use the search field in the notes app it doesnt seem to recognize all notes. some found some not. never experienced that issue in other apps than notes. really annoying cause you can not rely on the results.
    is there a way to reset the spotlight db or any other tipps how to tackle that.
    thanks and regards
    stlei

    Hi,
    Here:
    1. Delete ALL your controllers from your controller setup page.
    2. Quit Logic.
    3. REMOVE all drivers for your old controller. Ask Tascam if you don't know where they placed them.
    4. Unplug the Mackie MCU from the MIDI.
    5. Go to your Audio Midi Setup, and remove all controllers from this application.
    6. Quit AMS Setup.
    7. Plug in your MCU.
    8. Turn on your MCU, while pressing the channel 1 and channel 2 select buttons (the little ones above the faders).
    9. The MCU MODE is now on the LCD screen, you need to select "Logic Control" by pressing the LAST encoder knob, number 8. then the MCU should re-start.
    10. Open AMS setup application, and add the MCU device, and connect it to the right MIDI ports. Test by using the test button, and click on the MCU. All the lights should go ON on the MCU when you click on it.
    11. Quit AMS setup.
    12. Open Logic Pro, and open the controller setup page. If Logic does NOT scan automatically, do a manual scan, so Logic finds the MCU.
    13. Once it's set up, you're done.
    Cheers, and let me know if you have any further issues.

  • Problems with Spotlight searching of shared volumes

    According to: http://www.apple.com/macosx/features/300.html#spotlight, I should be able to "...search any connected Mac with Personal File Sharing enabled or a file server that’s sharing its files."
    It doesn't specify what "file server", so I presume it means Spotlight should be able to search any mounted shared volume (assuming, of course, that indexing has been enabled).
    I have a NAS device that I want to be able to search with Spotlight. According to mdutil, the volume is enabled for indexing, but I don't see any results when I search under "Shared" in Finder via Cmd+F. (I checked, and there's no .Spotlight folders on the volume.)
    From what I recall, under Tiger you could manually specify a network volume to index, but if you dismounted the volume, you'd have to re-enable indexing on next mount. This worked for other file systems (such as Fat32 & NTFS), as well as for HFS+ drives.
    According to mdutil in Leopard, the volume is still enabled for indexing even across dismounts. The NAS drive is not HFS+ formatted, but uses XFS.
    I've tried deleting the index, to no avail.
    Has anyone successfully used Spotlight to search mounted volumes on volumes not shared via another Mac?
    Am I missing something?

    You have not missed anything.... Leopard promises but does NOT deliver.
    I use an AFP server with Bonjour enabled. And NO NO NO Spotlight search is possible on this network volume...
    This is outrageous and FALSE information....
    Oh and - that Leopard is Sporting 300 new features is false info too.... Not even the "What is New in Leopard" says anything about 300 features.. But it sounds great doesn't it....

  • Searching inside PDFs ... maybe even with spotlight?

    Does anybody know of an application that lets me archive and search all my paper bound documents?
    While there are some applications on Windows (such as ScanSnap) I've not seen anything on the Mac. The workflow I have in mind is to scan a document and then somehow being able to search for words in that document - but with no manual tagging - ideally with spotlight.
    Any suggestions?

    Thanks for your input so far. I realize that .pdfs are just images, so please let me elaborate.
    In more technical terms, what I'm looking for is this:
    A utility that scans to .pdf and then runs the document through its OCR engine. It then adds the full text of the .pdf to the file as spotlight comments. This would preserve the original layout and yet make its content searchable without manual tagging.

  • How do I search for just a folder with Spotlight

    How do I search for a folder with Spotlight, not a file?  Spotlight is a great tool for finding a file, but often I just want to locat a folder.
    When I find a file, how to I see the path to this file?
    These are probably obvious question for longtime Mac users, but I come from the Windows world.

    Activate the Finder's window. Put the folder name in the search field in the Finder's toolbar. Enter COMMAND-F which should change the Finder's window and give a toolbar above the column headers:
    If you click on the dropdown menu with "Any" you will see this:
    Select the "Folder" entry.

  • Search inside Coldfusion files with Spotlight?

    I've recently found to my dismay that you cannot search inside .cfm files with Spotlight, and there appears to be no easy way to tell Spotlight to start looking in those files. I would assume that since they're just text files, and Spotlight does seem to search inside .htm files, that it shouldn't be too difficult to get Spotlight to do this, but I'm at a loss as to going about it.
    Can anybody point me in the right direction?
    Thanks.

    For Spotlight to index content there has to be an mdimporter for that content type. If the files are in fact plain text, it is possible to do a bit of hacking to get them indexed, see this discussion at MacOSXHints:
    http://www.macosxhints.com/article.php?story=20050514182520714&query=mdimport
    Be sure to read the comments! And don't do it without a current clone of your system on an external drive that is NOT attached when you try this out (if you do try it).
    Francine
    Francine
    Schwieder

  • My bluetooth just keeps searching on my new iPhone 5s and does not recognise my car bluetooth which was working perfectly with my 4s.

    My bluetooth just keeps searching on my new iPhone 5s and does not recognise my car bluetooth which was working perfectly with my 4s.

    Maybe it's because of Mfi approving (https://developer.apple.com/programs/mfi/)
    I have Sony bt GPS but can't use it with my wifi iPad because it's not approved.

  • What is available on new Windows servers that allow you to write scripts that can work directly with Windows, SQL Server, and Exchange Server?

    What is available on new Windows servers that allow you to write scripts that can work directly with Windows, SQL Server, and Exchange Server?
    a. PowerShell
    b. isql
    c. osql
    d. sqlcmd

    All questions seem to be from the interview or a test. I think I even took this test once, it's KForce test.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Is it true that Thunderbird does no longer works well with POP mail servers and only works well with IMAP servers?

    Our email host is telling us that our outdated POP mail server doesn't work well with Thunderbird and it the reason we're having sporadic difficulty sending out emails with attachments when using Thunderbird (no problems when sending emails directly from the email host's web portal and bypassing Thunderbird). We'll often get notification when using Thunderbird and trying to attach PDF'd documents to an email that "Sending of message failed. The message could not be sent because the connection to SMTP server timed out." The email host company is advising that this problem will be solved if we upgrade from the free POP email to the not free IMAP email. True? Or are they just using this Thunderbird problem as an excuse to sign us up for unnecessary services?

    I think they are using this as an excuse.
    Messages are sent via SMTP. Both, POP and IMAP are protocols to receive mail.
    In any case, it would be '''their''' 'outdated POP mail server', not yours.
    Check this article for troubleshooting the problem.
    https://support.mozilla.org/en-US/kb/cannot-send-messages

  • How enter prise search works in sharepoint 2010

    In my organization enterprise search is configured ,
    -- sharepoint farm has
    -- two index servers ( share point server search  service is  configured in this servers)
    two web front end servers(sharepoint foundation web applications, and  share point server search  service is  configured in this servers)
    - two  application servers( central admin service is running)
    - one sql server
    here i am new to this area
    here how entr prise search works,  why index servers used
    index data stored sepratly in thi servers?
    and when user query for any documentid where it will search initially
    i know the concept of search there are 3 things
    1) query
    2)index
    3)crawler
    adil

    Hi,
    In Microsoft SharePoint Server 2010 Search, index partitions are groups of query components, each of which holds a subset of the full text index and which return search results to the query originator. Each index partition is associated with a specific property
    database containing metadata associated with a specific set of crawled content.
    The index server manages the crawling and indexing of SharePoint Server content and maintains the index file. The index service works with the query service to let you search SharePoint Server content.
    Every SharePoint Server deployment must have at least one index server. Additional index servers may be necessary as the deployment grows. There can only be one index server per server farm.
    If you use the web front end as your query server.  This tells the index server to propagate its index to the WFEs that are set as query servers so that they have a local copy of the index.
    When someone does a search (this is done on the WFE), then that WFE will search itself locally instead of going across the network to query the index server.  
    This increases speed at the time of query, but it of course introduces additional overhead in terms of having multiple full copies of the index on the network and the network demand of propagating those index copies all the time. 
    If you select the query role on your index server, then the index will not get propagated and all searches will query the index server across the network.  
    For more information, you can refer to the following article.
    http://www.sharepointpitstop.com/2012/08/sharepointsearch-index-query-crawl.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Chennai Ptax calculation during Withdrawn stage in mid month

    Hi Experts, As i know chennai Ptax is calculated twice in a year 6th and 12th or 5th and 11th period. But if employee resign during the mid cycle example:employee joined april and resigned in mid july, will ptax is calculated till that period or it w

  • ITunes has detected an audio configuration problem ????

    I was getting the above error (see subject) when starting iTunes but iTunes still started after the error-message. Then I followed these directions (http://docs.info.apple.com/article.html?artnum=304424) and now iTunes refuses to start at all !!!!! W

  • Playing videos on Zen Mozaic

    I have a 6gb Zen Mozaic and I am having trouble finding videos that I can put on the player. I looked at the format of the sample videos that came with the player and they are .avi format so I tried to upload a few other .avi video files to the playe

  • How can i records with date format using web services?

    Hello I can't record date records using web services. I get no message errors. I can import string values but no dates (YYYY-MM-DD). Do you have any clue about that? Regards Arturo

  • What if my Apple ID is the same as my AOL email address?

    If my Apple ID is the same as my AOL email address but the passwords are different, do I still need to change it? I logged out of iTunes and back in as instructed but no prompt to change my Apple ID.