How to check if a given folder is indexed by spotlight?

Hi Friends,
I have this well known indexing issue with spotlight in mountain lion where it doesn't index Microsoft Outlook for mac 2011 e-mails.
I have tried all the solutions in web like:
1. Re-indexing Microsoft User Data Folder
2. Re-indexing Entire hard drive
3. Re-installing Office 2011 for mac (14.2.4)
with no luck.
Now what I am trying is, remove Office 2011 completely and install Office 2011 for mac version 14.2.3 (assuming the indexing issue is not in this version of office) and re-index entire hard drive.
Is there a way (other than the Privacy tab of Spotlight preferences), e.g. a command in Terminal to check if Spotlight is really indexing the ~/Documents/Microsoft User Data folder at all?
i.e. once the indexing is completed, is it possible to go into that folder or right click-->Get Info and see if this one has been indexed by spotlight?
Why I am asking this question is, generally when we try to re-index entire hard drive and try to add this in Privacy tab of Spotlight preferences, it pops up a warning message asking for confirmation. But such a warning message is not seen when I add ~/Documents/Microsoft User Data folder alone. This makes me suspect wethere Spotlight is indexing this folder at all?

Hello Rui,
Use the function module ENQUEUE_EVVBAKE with the interface parameter VBELN as the Sales Order number. If sy-subrc is not zero after execution of the function module, then that Sales Order is being edited.
Manoj

Similar Messages

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • I have a Verizon IPhone 4 and i can't figure out how to get my ringtones from an app to my iTunes account, it doesn't have a tab for Ringtones! I have tried unplugging it and checking if would show up but it didn't, how do you enable the ringtone folder?

    I have a verizon IPhone and i can't figure out how to get my ringtones from the app to iTunes, my account doesn't have a ringtone section in the liRingtone Folder?brary, how do you enable the ringtone folder?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • Function module to check if a given file/folder path is valid or not?

    Hi,
    I am using function modules GUI_DOWNLOAD and GUI_UPLOAD.
    Is there any function module to check if a given file/folder path is valid or not?
    Thanks.

    Hi Kumar ,
    REPORT  zdir_test.
    TYPE-POOLS: abap.
    DATA: v_dir TYPE string.
    DATA: v_bol TYPE abap_bool.
    v_dir = 'c:\sap\'.
    CALL METHOD cl_gui_frontend_services=>directory_exist
      EXPORTING
        directory            = v_dir
      RECEIVING
        result               = v_bol
      EXCEPTIONS
        cntl_error           = 1
        error_no_gui         = 2
        wrong_parameter      = 3
        not_supported_by_gui = 4
        OTHERS               = 5.IF NOT v_bol IS INITIAL.
      WRITE:/ 'Directory exists.'.
    ELSE.
      WRITE:/ 'Directory does not exist.'.
    ENDIF.
    Regards,
    Sachin M M

  • How to check whether there r new txt files in a folder n file creation date

    How to check whether there r new text files in a specified folder and what is the date of creation of the text file.........?

    Hi
    I have been searching for a solution to find the date of creation of a file for over 6 months now but haven't found it. So I presume that it is not possible though I havent found any authentication of my assumption in any document.
    Cheers!
    Shailesh

  • How can i check when a given query was run

    how can i check when a given query was run ( i mean the timestamp ) from forms
    I am trying to run the query depending on when it was last run

    Hello,
    I'm not sure to really understand your need, but if you want to refresh the data blocks regularly, you can use a timer that would execute_query on the block every elapsed period of time.
    Anyway, there is no "timestamp" of this kind, so that you would store the information somewhere in memory on in a table, from a PRE-SELECT or POST-SELECT trigger for instance.
    Francois

  • How to check whether a file exist in the program folder or not?

    Hi guys,
    how to check whether a file exist in the program folder or not? Let is say i recieve a file name from user then i want to know if the file is there not and act on that base.
    abdul

    Look at the class java.io.File and the .exists() method:
    http://java.sun.com/j2se/1.4/docs/api/java/io/File.html

  • [req] how to check whether given oracle table exist or not + C#

    Hi,
    All.
    Actually i m creating a program using C# which connects to the database (oracle) and checks for the given table "OPC_GROUP". if the table doesnt exists then it creates the table else it updates all field with provided values
    code
    cmd.CommandText = "SELECT tname from tab where tname = 'OPC_GROUP'";
    cmd.CommandType = CommandType.Text;
    int length = cmd.ExecuteNonQuery();
    if (cmd.ExecuteNonQuery() >0)
    MessageBox.Show("Table does exist");
    else
    MessageBox.Show("Table doesnt exist");
    But this code return "TABLE DOESNT EXIST" though table is already created
    What i m doing wrong???
    Please help..........
    Thnx in advance

    Try this..
    cmd.CommandText = "SELECT count(*) from tab where tname = 'OPC_GROUP'";
    cmd.CommandType = CommandType.Text;
    string strnum = cmd.ExecuteScalar().ToString();
    if (strnum!="0")
    MessageBox.Show("Table does exist");
    else
    MessageBox.Show("Table doesnt exist");
    Hope it helps,
    Greg

  • How to check RBS maintainer is running or not and how to stop the RBS maintainer for a specific content db.

    HI
    how to check RBS maintainer is running after deleting orphan blobs and  while deleting the blobs from rbs storage,
    and also how to stop the RBS maintainer for a specific content db.
    when I run below query  I found the orphancleanup value true
    SELECT [config_key],[config_value] FROM [mssqlrbs_resources].[rbs_internal_config]
    where config_key='orphan_cleanup_in_progress'
    adil

    HI
    the  RBS maintainer was run from one of web front end server  And for one content database , that fine
    but I  now know this information only this did by other administrators.
    Now I did not found this Maintainer running in windows task scheduler, but blobs are decreasing from content database RBS storage folder, and  also I found this maintainer running I checked from  when  run sql queriy in  sql
    server
    SELECT
    [config_key],[config_value]
    FROM
    [mssqlrbs_resources].[rbs_internal_config]
    where
    config_key='orphan_cleanup_in_progress’
    it  given me true
    here now  I want to stop this orphan cleane up , what settings and script I will run?
    adil

  • How to check the DHCP lease remaining time

    Hello Community,
    I am troubleshooting a connectivity issue on my Macbook pro which APPARENTLY ignores the DHCP ACK messages sent in reply to Unicast DHCP Requests (the ones sent when T1 timer expires at 50% of the lease time) from a particular DHCP server.
    Do you happen to know the command which shows the current remaining lease time for the assigned DHCP IP address? I need that to confirm my assumptiom.
    By checking in the /leases folder you may only see the original lease Start date, which is the time the initial DHCP DORA process took place. When the 'refresh' DHCP requests are sent after 50% of the lease, and consequently the DHCP ACKs from the server are received the value in that file does not change. That means that this command is not good to check what I need.
    I.e.:
    xxxxxxx-mac:db xxxxxxi$ sudo cat /private/var/db/dhcpclient/leases/en1-1,<omitted-MAC>
    Password:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>IPAddress</key>
              <string>192.168.1.14</string>
              <key>LeaseLength</key>
              <integer>600</integer>
              <key>LeaseStartDate</key>
              <date>2012-03-02T09:16:14Z</date>
              <key>PacketData</key>
              <data>
              AgEGAKA9KL0AAAAAAAAAAMCoAQ7AqAEBAAAAAAAmuxA9XwAAAAAAAAAAAAAAAAAAAAAA
              AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
              AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
              AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
              AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjglNjNQEFNgTAqAEBMwQAAAJY
              AQT///8AAwTAqAEBBgTAqAEBDwRob21lKgTDDQGZ/wAAAAAAAAAAAAAAAAAA
              </data>
              <key>RouterHardwareAddress</key>
              <data>
              6L6BA24U
              </data>
              <key>RouterIPAddress</key>
              <string>192.168.1.1</string>
    </dict>
    </plist>
    Even when a subsequent DHCP ACK message is received that value remains unchanged.
    I need a command or application which shows instead the actual lease timer.
    thanks,
    Riccardo

    apparently I am not getting lucky by putting the question this way.. let me try another approach giving more background details.
    PROBLEM:
    When I am in a particular location my mac get disconnected from the network every 30 minutes when my DHCP IP address expires. The DHCP server grants 30 minutes IP leases only.
    I took some capture (I sniffed DHCP transactions) and I could see that when 50% of the lease time is reached (T1) my mac sends a new unicast DHCP request to the DHCP server which replies immediately with a DHCP ACK confirming 30 more minutes.
    Unfortunately I did not find any command to see if the lease gets actually extended.
    What I see is that after few minutes (matching the 87.5% T2 timer) my match fires a new DHCP request, which is also answered immediately with a ACK. Then in the last minutes before the 30 minutes threshold I see many other requests which are also all answered. Nevertheless when the origianal 30 minutes lease expires my MAC releases the IP and start a new Discovery process (sending a bcast request). After few seconds the DORA process completes and usually the mac gets the same IP address. The issue for me is that in the meantime my VPN session to my corporate network goes down and all the services associated with that go down too (softphone, presence, chat, email etc).
    I did some test in my place and I configured my DHCP server to assign IP addresses with a 30 minutes lease time too. Strangely the issue does not happen. On my place every 15 minutes (again the famous T1 timer = 50% of the lease) my mac sends a request and the DHCP replies with an ACK. This time apparently the lease gets extended as I don't see all the other requests. Needless to say that the IP does not get released at any time.
    I compared the wireshark capture to spot any difference between that DHCP ACK I got in that given location and the one I got in my place but they look the same to me.
    So the question is, how would you troubleshoot this issue? Which kinds of logs, outputs or debugs should I take?
    thanks,
    Riccardo

  • How to Share One iTunes Media Folder on a Windows Laptop and Mac Laptop

    I have an HP EX490 Home Server setup. I want to use the Music Share volume to act as the home for all of our music. I am using a MacBook Pro and my wife is using a Dell Windows Vista Laptop. I have my iTunes pointing to the iTunes Media Folder on the Music Share. The iTunes Library resides on my laptop in Music/iTunes/Library. I used the consolidate library feature and it moved all the music to the appropriate iTunes folder on the Share. Now I want to do that with the Windows Vista Laptop. I have the Vista laptop pointing to the Share for the iTunes Media folder location. The question is how do I add the files to her library? Do I "consolidate library" again or just "add folder to library"? Also do I keep the boxes checked "Keep iTunes Media folder organized" and "Copy files to iTunes Media folder when adding to library" under the Advanced Tab in Preferences? Would greatly appreciate the help. Lots of music/videos and only want to do this once.
    Thanks in Advance
    Tom

    Tom DePrenda wrote:
    I used the consolidate library feature and it moved all the music to the appropriate iTunes folder on the Share.
    Good!
    I have the Vista laptop pointing to the Share for the iTunes Media folder location.
    Good!
    The question is how do I add the files to her library?
    Go to your File menu and use the command Add Folder to Library. When the dialog comes up, point it to the Music folder in the Share area. But read on first...
    Also do I keep the boxes checked "Keep iTunes Media folder organized"
    You must turn off the "Keep..." option. Otherwise, when one of you changes a tag, iTunes will re-"organize" and the other person's iTunes will lose the link.
    The "Copy..." option should also be turned off. As you add new music, put it where you want it. Then you must "Add File to Library" from each iTunes.

  • How to check number of rows processed in a package

    i have a pakage wid at least 11 procedures which runs on running a report now user run the report and he told me that records are not fully processed records are less so how to check how many records are processed so i can conform the data
    its urgent plzz any suggestion
    thanks a lot

    And here's some hints for you posting on the forum...
    a) do not post in UPPER CASE unless you are highlighting a word or two. Typing everything in UPPER CASE, is considered shouting and is not polite.
    b) do not say that your requirement is "urgent". Everyone here is a volunteer with their own jobs to do and your requirement is not "urgent" to them. Suggesting they drop everything to help you is poor netiquete and, again, quite rude. It also presumes that your issue is somehow more important than other people who have posted asking for assistance. Sure, everyone else would like their question answering as soon as possible, but they aren't so rude as to demand urgent attention, so neither should you.
    c) Always tell us your database version. The answers you are given may vary depending on the capabilities of the database version you are using and if you don't specify a version, people will have to assume you are using the latest supported versions and the answers may not work for you if you have a less capable version, even if those answers are technically correct.
    d) Always try and give an example of what you mean. Provide sample tables (create table statements) and sample data (insert statements), with example code or queries that you've tried (where relevant), showing what you expect to get as output and explaining any logic that is to get from the source to the output.
    e) Post any code or data inside {noformat}{noformat} tags so that it retains formatting on the forum.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I make the Volumes folder visible so it will back up using Time Machine?

    Hi
    How do I unhide the Volumes folder for backing up using Time Machine?

    OK I have to say this even though you probably realize it, having anything but mount points in the Volumes folder, especially regular files that are critical to you is really a bad bad idea. 
    You should do everything in your power to correct this asap.
    In the meantime as to Time Machine, your profile says you are running 10.6.8 is that correct? TM has changed some since then.
    Basically if you are not excluding system files from the backup the Volumes folder should be in the backup. If the regular files are in there is an other issue.
    You can check by opening a Terminal window cd to your TM backup drive then into the .backup folder. Pick a backup and see if the Volumes folder is there and if the files are in it.
    But again having anythgin in there is going to be a problem.
    good luck

  • How to Check System Preference Settings with Time Machine

    I just found and fixed a problem caused by a bad System Preference/Universal Access
    setting and would like to go back in my Time Machine backup to see where the
    error was made. I may have been too quick to blame the 10.5.3 update on the
    problem so wanted to look back in time.
    The problem is i don't know how to check System Preferences using the Time Machine.
    Any suggestion?

    If you're looking for specific settings, the short answer is you cannot. You can open the .plist files and try to find the specific option you're looking for, though it might not be too easy to decipher some of the contents of the .plist file. For the most part they're just lists of attributes and settings. For instance, here's a very small chunk of my Finder .plist file:
    <key>All Images.cannedSearch</key>
    <dict>
         <key>SidebarWidth</key>
         <integer>162</integer>
         <key>ToolbarVisible</key>
         <true/>
         <key>ViewHeight</key>
         <integer>1116</integer>
         <key>ViewStyle</key>
         <string>icnv</string>
         <key>WindowBounds</key>
         <dict>
              <key>bottom</key>
              <integer>1200</integer>
              <key>left</key>
              <integer>56</integer>
              <key>right</key>
              <integer>1920</integer>
              <key>top</key>
              <integer>84</integer>
         </dict>
    </dict>
    <key>AnimateInfoPanes</key>
    <true/>
    <key>AnimateSnapToGrid</key>
    <string>true</string>
    <key>AnimateWindowZoom</key>
    <true/>
    Each "key" is followed by an attribute, so for instance the "SideBar Width" key is given the "Width" integer attribute of 162. However, some keys have multiple entries, such as the "WindowBounds" key having sub-keys of "bottom", "left", "right", and "top".
    These values are finder preferences, though are not accessible via the finder's preference settings. However, buried deep in the Finder's .plist file are some of the user-editable settings:
    <key>ShowHardDrivesOnDesktop</key>
    <true/>
    <key>ShowMountedServersOnDesktop</key>
    <true/>
    <key>SidebarSearchesSectionDisclosedState</key>
    <false/>
    If you can find the attribute you're looking for, then that may help you narrow down which version of a .plist file to restore, though not all of them are straightforward legible text. Some have bizarre strings of seemingly random characters that only the application can interpret.
    Message was edited by: Topher Kessler

  • How to check the format (PAL or NTSC) of a DVD?

    I wonder if someone can tell me how to check the format (PAL or NTSC) of DVD’s that I receive from my friends around the world. Many of them have no marking as to the format... Is there some software that can do this?

    Hello Peace Freak,
    have a look at myDVDedit (http://www.mydvdedit.com). It's actually designed to do postproduction on a DVD, but will also display a lot of info, such as TV standard, 16:9 vs. 4:3, etc.
    Insert your DVD, then launch myDVDedit and open the VIDEO_TS folder contained in your DVD. Click the IFO tab to find the information you're looking for.
    hope this helps
    mish

Maybe you are looking for

  • Function keys not working in XP under Boot Camp

    I have a slight problem with Boot Camp with XP. When I first installed it long ago, I recall there was a Boot Camp icon in the Windows tool bar, and the function keys could be used to change the volume, brightness, and keyboard backlight. Now, there

  • How to read data in CATS DB?

    Hello Experts, We are maintaing our time data in a thrid party system. And it is transfered to CATS DB. From there it is tranferred to IT 2001, IT 2002 and IT 2010. Now we have an issue, the data that is maintained in 3rd Party system is correct, but

  • How to change logical device names

    Hi, I would like to change the logical device names for an external StorEdge. Booting into single user mode from a CD and deleting everything in /dev/dsk/ and /dev/rdsk/ as well as the path_to_inst file and then reconfigure booting doesn't work. Sola

  • Cast to date

    hi to all, I need to change the variable type from varchar to data; I prefer to do this in the .RPD, in the 'Business Model and Mapping' layer. I've created a new logical column as: CAST ( SUBSTRING(Commerciale.FACT_USCITA.Data_Pagamento_Cont FROM 1

  • Itunes not loading right

    can someone help me? my itunes is loading bout it doesnot look right. there are some big pics and then a lot of text. here is my diagnostic. Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002) Dell Inc. Inspiron 1721 iTunes 9.0.3