T/X model SORTing Find/Search results from Most Current Entry

Have the Palm T/X model, and use the FIND/search function constantly.
The results always come up from the earliest (oldest) entry to the most current.
This is a major league pain-in-the-butt especially when there are tons of entries to go thru to get to the most current date.
Is there any way to sort the FIND results so that they show from most Recent entry to the oldest.
This would be a HUGE Help.
Thx!
Post relates to: Palm TX

There is a pulsing, reddish dot in the middle of the
blue light but on the hard drive itself, I don't see
any "lights" in any "menu bar".
It's at blue circle with a white Q-shaped symbol at the right end of your menu bar.
If you dare to use the terminal application (can be found in the utilities folder) you can use the following command to re-index that drive. Start Terminal and type (or paste) the following line and hit enter:
sudo mdutil -E "/Volumes/xxx/"
Replace "xxx" with the name of Your drive! If there is a space in that name type it like "/Volumes/My\ Drive/"! You will be prompted for Your admin password to proceed.

Similar Messages

  • ADFS SSO and SharePoint 2013 on-premise Hybrid outbound search results from SharePoint Online - does it work?

    Hi, 
    I want to setup an outpund hybrid search for SharePoint 2013 on-premise to SharePoint Online.
    But I'm not shure if this works with ADFS SSO.
    Has somebody experience with this setup?
    Here's my guide which I'm going to use for this installation:
    Introduction
    In this post I'll show you how to get search results from your SharePoint Online in your SharePoint 2013 on-premise search center.
    Requirements
    User synchronisation ActiveDirectory to Office 365 with DirSync
    DirSync password sync or ADFS SSO
    SharePoint Online
    SharePoint 2013 on-premise
    Enterprise Search service
    SharePoint Online Management Shell
    Instructions
    All configuration will be done either in the Search Administration of the Central Administration or in the PowerShell console of your on-premise SharePoint 2013 server.
    Set up Sever to Server Trust
    Export certificates
    To create a server to server trust we need two certificates.
    [certificate name].pfx: In order to replace the STS certificate, the certificate is needed in Personal Information Exchange (PFX) format including the private key.
    [certificate name].cer: In order to set up a trust with Office 365 and Windows Azure ACS, the certificate is needed in CER Base64 format.
    First launch the Internet Information Services (IIS) Manager
    Select your SharePoint web server and double-click Server Certificates
    In the Actions pane, click Create Self-Signed Certificate
    Enter a name for the certificate and save it with OK
    To export the new certificate in the Pfx format select it and click Export in the Actions pane
    Fill the fields and click OK Export to: C:\[certificate
    name].pfx Password: [password]
    Also we need to export the certificate in the CER Base64 format. For that purpose make a right-click on the certificate select it and click on View...
    Click the Details tab and then click Copy to File
    On the Welcome to the Certificate Export Wizard page, click Next
    On the Export Private Key page, click Next
    On the Export File Format page, click Base-64 encoded X.509 (.CER), and then click Next.
    As file name enter C:\[certificate
    name].cer and then click Next
    Finish the export
    Import the new STS (SharePoint Token Service) certificate
    Let's update the certificate on the STS. Configure and run the PowerShell script below on your SharePoint server.
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # import it
    Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $PfxCert
    Type Yes when prompted with the following message.
    You are about to change the signing certificate for the Security Token Service. Changing the certificate to an invalid, inaccessible or non-existent certificate will cause your SharePoint installation to stop functioning. Refer
    to the following article for instructions on how to change this certificate: http://go.microsoft.com/fwlink/?LinkID=178475. Are you
    sure, you want to continue?
    Restart IIS so STS picks up the new certificate.
    & iisreset
    & net stop SPTimerV4
    & net start SPTimerV4
    Now validate the certificate replacement by running several PowerShell commands and compare their outputs.
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    # get the encrypted pfx certificate object
    New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # compare the output above with this output
    (Get-SPSecurityTokenServiceConfig).LocalLoginProvider.SigningCertificate
    [/code]
    ## Establish the server to server trust
    [code lang="ps"]
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    Import-Module MSOnline
    Import-Module MSOnlineExtended
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # set the onpremise domain that you added to Office 365
    $SPCN = "sharepoint.domain.com"
    # your onpremise SharePoint site url
    $SPSite="http://sharepoint"
    # don't change this value
    $SPOAppID="00000003-0000-0ff1-ce00-000000000000"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # get the raw data
    $PfxCertBin = $PfxCert.GetRawCertData()
    # create a new certificate object
    $X64Cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
    # import the base 64 encoded certificate
    $X64Cert.Import($X64CertPath)
    # get the raw data
    $X64CertBin = $X64Cert.GetRawCertData()
    # save base 64 string in variable
    $CredValue = [System.Convert]::ToBase64String($X64CertBin)
    # connect to office 3656
    Connect-MsolService
    # register the on-premise STS as service principal in Office 365
    # add a new service principal
    New-MsolServicePrincipalCredential -AppPrincipalId $SPOAppID -Type asymmetric -Usage Verify -Value $CredValue
    $MsolServicePrincipal = Get-MsolServicePrincipal -AppPrincipalId $SPOAppID
    $SPServicePrincipalNames = $MsolServicePrincipal.ServicePrincipalNames
    $SPServicePrincipalNames.Add("$SPOAppID/$SPCN")
    Set-MsolServicePrincipal -AppPrincipalId $SPOAppID -ServicePrincipalNames $SPServicePrincipalNames
    # get the online name identifier
    $MsolCompanyInformationID = (Get-MsolCompanyInformation).ObjectID
    $MsolServicePrincipalID = (Get-MsolServicePrincipal -ServicePrincipalName $SPOAppID).ObjectID
    $MsolNameIdentifier = "$MsolServicePrincipalID@$MsolCompanyInformationID"
    # establish the trust from on-premise with ACS (Azure Control Service)
    # add a new authenticatio realm
    $SPSite = Get-SPSite $SPSite
    $SPAppPrincipal = Register-SPAppPrincipal -site $SPSite.rootweb -nameIdentifier $MsolNameIdentifier -displayName "SharePoint Online"
    Set-SPAuthenticationRealm -realm $MsolServicePrincipalID
    # register the ACS application proxy and token issuer
    New-SPAzureAccessControlServiceApplicationProxy -Name "ACS" -MetadataServiceEndpointUri "https://accounts.accesscontrol.windows.net/metadata/json/1/" -DefaultProxyGroup
    New-SPTrustedSecurityTokenIssuer -MetadataEndpoint "https://accounts.accesscontrol.windows.net/metadata/json/1/" -IsTrustBroker -Name "ACS"
    Add a new result source
    To get search results from SharePoint Online we have to add a new result source. Run the following script in a PowerShell ISE session on your SharePoint 2013 on-premise server. Don't forget to update the settings region
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # region settings
    $RemoteSharePointUrl = "http://[example].sharepoint.com"
    $ResultSourceName = "SharePoint Online"
    $QueryTransform = "{searchTerms}"
    $Provier = "SharePoint-Remoteanbieter"
    # region settings end
    $SPEnterpriseSearchServiceApplication = Get-SPEnterpriseSearchServiceApplication
    $FederationManager = New-Object Microsoft.Office.Server.Search.Administration.Query.FederationManager($SPEnterpriseSearchServiceApplication)
    $SPEnterpriseSearchOwner = Get-SPEnterpriseSearchOwner -Level Ssa
    $ResultSource = $FederationManager.GetSourceByName($ResultSourceName, $SPEnterpriseSearchOwner)
    if(!$ResultSource){
    Write-Host "Result source does not exist. Creating..."
    $ResultSource = $FederationManager.CreateSource($SPEnterpriseSearchOwner)
    $ResultSource.Name = $ResultSourceName
    $ResultSource.ProviderId = $FederationManager.ListProviders()[$Provier].Id
    $ResultSource.ConnectionUrlTemplate = $RemoteSharePointUrl
    $ResultSource.CreateQueryTransform($QueryTransform)
    $ResultSource.Commit()
    Add a new query rule
    In the Search Administration click on Query Rules
    Select Local SharePoint as Result Source
    Click New Query Rule
    Enter a Rule name f.g. Search results from SharePoint Online
    Expand the Context section
    Under Query is performed on these sources click on Add Source
    Select your SharePoint Online result source
    In the Query Conditions section click on Remove Condition
    In the Actions section click on Add Result Block
    As title enter Results for "{subjectTerms}" from SharePoint Online
    In the Search this Source dropdown select your SharePoint Online result source
    Select 3 in the Items dropdown
    Expand the Settings section and select "More" link goes to the following URL
    In the box below enter this Url https://[example].sharepoint.com/search/pages/results.aspx?k={subjectTerms}
    Select This block is always shown above core results and click the OK button
    Save the new query rule

    Hi  Janik,
    According to your description, my understanding is that you want to display hybrid search results in SharePoint Server 2013.
    For achieving your demand, please have a look at the article:
    http://technet.microsoft.com/en-us/library/dn197173(v=office.15).aspx
    If you are using single sign-on (SSO) authentication, it is important to test hybrid Search functionality by using federated user accounts. Native Office 365 user accounts and Active Directory Domain Services
    (AD DS) accounts that are not federated are not recognized by both directory services. Therefore, they cannot authenticate using SSO, and cannot be granted permissions to resources in both deployments. For more information, see Accounts
    needed for hybrid configuration and testing.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Clicking a search result from search bar goole seaech, always opening google home page but only can open search in new tab by middle click,really frustrating.

    Whenever i am clicking search result from Google search bar, it always opens the Google home page. I can only open search result in new tab by double clicking. It started when i installed Firefox 12.

    @mstm, please ensure that you write some thing in search bar before you click search icon. without entering anything will redirect to google.com. And make sure that you are clicking on search icon not home icon.

  • Sorting Ultra Search results

    I am in the process of researching Ultra Search and I am planning on building search functionality using the Ultra Search tag library. Part of the requirement of this search is that the search results need to be sorted alphabetically on a particular attribute. Is this possible with Ultra Search? If so, how can it be done? Or are the results always returned sorted based on the relevance score?
    Any help would be appreciated.
    PB

    Hi,
    please check the following.
    http://www.sharepointconfig.com/2013/05/how-to-create-a-simple-sharepoint-2013-people-directory/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3159b9e1-546b-4204-aefe-20aa1b54bee9/sorting-people-search-results?forum=sharepointsearch
    Hope it helps
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Clear search results from Content Services Windows Crawl 6.1

    We have ALI Content Services Windows Files 6.1 with a crawl job on a network location. It works fine. Now we have changed the location - directory structure. The job, modified with the new location works fine, however, we still see search results from the old location also. Since those documents no longer exist, clicking on the link causes an error. How do we clear the search results?
    Thanks.

    Have you tried running Search Repair. I believe this should clear out the orphaned search records.

  • Show hidden files in finder search results

    I discovered my backup HD was rapidly full because of After Effects Cache folder hughe size.
    I fixed it in CCC to not to backup that directory but I need to remove all the old ones.
    I am able to see them under Users/Library.......  (hidden by default). I also have deleted some 50Gb AE cache folders.
    But I have a lot of folders.
    I've tried to search all of them 'Adobe After Effects Disk Cache' but finder search does not display them. I also tried Terminal 'locate' on /Volume/HDbackup, no results
    Thanks

    Hi Viking, thanks for your help.
    The purpose to get them in Finder search result is to select them all and send them to trash at once.
    To test your commands I changed
    '~' by /Volumes/....../_CCC\ Archives  and '.*' by 'Adobe After Effects Disk Cache'
    I got lots of 'permission denied'
    I also tried
    find -x  ~  -name 'Adobe After Effects Disk Cache' \( -type d -exec find {} \; -prune -o -print \) 2>&1 > hidden.txt
    where it is supposed to find one result but hidden.txt was empty
    'Adobe After Effects Disk Cache' is a directory
    What do you suggest?
    Thank you

  • MetroLyrics search not working. Gets stuck at finding search results....

    Metrolyrics search is not working for me in my FF. Search always at 'finding search results' but nothing more.
    Tried IE 10 and there metrolyrics working fine, so it is something with FF.
    Please help...
    Thanks in advance.

    EDIT: solved by removing NoScript.....
    Sorry for posting....

  • Finder Search Results DATE CREATED / 10.5=MOST USELESS O.S. OF ALL TIME?

    Please Please Please tell me there's still a way to turn on the view options in finder search windows/results to display a files "Date Created" / "Date Modified" / "Size" etc. (basically all the options we have in a finder list view window).
    Seriously, if we are limited to Name/Kind/Last Opened with no way to see, at the very least, Date Created/Modified in the search results Mac OS 10.5 has just become useless to meet my needs. I mean totally and entirely useless. I mean sell my iMac and buy a windows box so I can find my files useless.
    Just tell me there's a way to turn on ALL the view options.
    <Edited by Moderator: Please See Terms of Use>

    There does not seem to be any way to restore Finder's behavior and options for search as it was in Tiger etc. Leopard's Finder view options aren't even allowed any longer in search windows (go to View->Options to get a frustrating message about it).
    There seems to be NO 3rd party utility to allow real-time file search and display/sort results by size -- obviously noone wrote it, since Finder used to be able to do that - until Leopard, that is.
    If this is a bug it's a pretty big and obvious one. I've reported it on bugreporter.apple.com (I guess others have done the same).
    If it were to be considered a "feature" in Leopard, it'd be one of the most limiting ones in 10.5 - this one and the Dock's Stacks are pretty high on the list of useless "new features" in Leopard. John Siracusa wrote in his excellent review about these and others (at http://arstechnica.com/reviews/os/mac-os-x-10-5.ars/12) :
    "+Not only does the Leopard Finder take no bold steps towards a brave new world of file management, it even further distances itself from a coherent incarnation of established file management paradigms. The changes in Leopard do indicate that Apple has taken a renewed interest in improving the Finder, but motion is not the same thing as progress. For where I'm sitting, it looks like one step forward, two steps back.+"
    Speaking as someone who's been developing software on Mac OS X since pre-Aqua Mac OS X Server 1.0 days, I sadly have to agree...

  • Full-text search in published project finding zero results for multiple-word entries

    [RH10, IE10, Windows 7]
    I manage a large WebHelp project that has produced correct search results in the past. At some point the search function stopped finding results for entries of more than one word. For example, it won't find any results for "project plan" even though searching for either "project" or "plan" separately will correctly return results including the numerous pages containing either "plan project" or "project plan".
    TCS support is having a look at the files. So far we have found that this occurs under Google Chrome as well as IE 10, and also that the same error occurs if we publish to FlashHelp.
    BTW, I have another similarly configured project that does not display this error.
    I was hoping someone might have encountered this and can suggest a fix.
    Alberti

    Hi Rick,
    We do have baggage files of all sorts but in this project they are excluded from search.
    At one point in this project Search failed completely; the Search pane came up blank after generating. I was advised by a TCS support person that PDF baggage files (and not just “errant” ones!) will kill the search function (hmmm…) and must be excluded from search (in the WebHelp layout properties). That proved to be right and fixed the problem. Search worked fine for a while until I observed this new thing.To be extra-cautious I have excluded ALL baggage files from Search, at least until we can eliminate whatever this new issue is.

  • No search results from "Open" dialogue box

    In Mavericks OS 10.9.4, I get no search results when searching from an open dialogue box, i.e. open file from within Photoshop or some other program.  Searching from within Finder works fine.  Anyone else seeing this?  Any solutions?
    Mac Pro 2014
    Mavericks OS 10.9.4

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe modeand log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Finder search results show MP3s with incomplete or changed filenames in Yosemite

    Under Yosemite, when performing a search for "mp3" in Finder, certain search results will not display their true filename under the "Name" column:
    For example, the "Name" column above should display the entire filename (as shown in the Status Bar), not just what I can only assume is the track title.
    This does not apply to all mp3s, only to some. Probably something to do with ID3 tags, or perhaps with certain hyphen usage in the filename.
    Anyway, I'd just like the "Name" column to show me the filename as it should, and not metadata. I can't find how to change the results to display the correct filenames.
    This causes several problems. First it makes sorting by an album's track number, which is frequently included in the actual filename, in the search results impossible, as now the numbers are not part of the list. Therefore if I want to drag an album into an iTunes Playlist in the correct album order I have to go to the source folder and can't do it straight from the search window. Also I can't see separate versions of the same song, which may have the same track title but different filenames. Also I can't see the filename at a glance, which may include other important information other than the track title. And so on.
    I can't find anyone else who has this problem on Yosemite. Mavericks yes... and sadly no help. Hoping it's fixable.

    I have the same problem with AIFF's too...
    It's a big problem for me as I'm currently doing some sound design.
    I need to see the file name in the finder, not the title/track name.

  • Push MDM search results from webdynpro to portal's standard ResultSet iView

    Hi,
    I have gone thru a lot of SDN information, blogs and PDFs
    regarding the usage of EPCF, EPCM for communication between
    Webdynpro and Portal utlizing portal eventing phenomenon.
         My requirement a.k.a. predicament and grief::
    I get back mdm search results in webdynpro app, using a
    specialized search strategy to MDM repository. I need to
    ship these resuls off to the standard out-of-box
    portal's MDM ResultSet iView (which is a part of portal's
    MDM business package).
    I haven't had much success getting crisp resolution to
    satisfy my requirements. In my WD code, I know,  I need
    to put some sort of ?event-generating-2-liner-code? that
    sends my results to portal's standard iView.  
    Surely, I can send just recordIDs or I can send the actual
    results. I get 5 fields per record of Material's table.
    Once the ResultSet-iView displays the search results,
    my responsibility is over. Now onwards, portal's standard
    business package will take over from there for further user
    interacitons, like accessing item details etc..etc..
    Any and all help is highly appreciated.
    -Shashank Date

    No replies............yet.....It's been 2 days now.....
    Can someone provide some clues?
    thx.
    -Shashank Date

  • Sorting the Search Result of IndexBased Search Result

    Hi ,
    I am using Index based search to get the result from the Index. I am trying to get the search result with sorting order of modified date.
    I found there is an API to get but I could able to understand How to use that API.
    If any body knows please let me know the solution
    Thanks
    Tatayya M

    No info

  • Changing View Options for a Finder SEARCH Results

    I want to add SIZE to the Finder window that is generated from a <command> Find.
    I cannot add anything to the standard Name/Kind/Last Opened. I want to add SIZE to the search results window. When I choose View Options, the options window says:
    There are no view options for the Searching This Mac window.

    corbey wrote:
    I want to add SIZE to the search results window.
    In normal Finder windows you can select View>view options>*Calculate all sizes*
    In Finder search window results, this has been hobbled. Here is the work around:
    http://hints.macworld.com/article.php?story=2009083113534843
    Message was edited by: leroydouglas

  • Incomplete Finder search results in Mavericks

    Hi guys. It appears search results in Finder in Mavericks are incomplete.
    I am used to delete preference files left behind after I trash an app -like .plist files located in home folder/library/preferences -they are showed no more in search results. Obviously finder search criteria are customized to show system and hidden files.
    It looks like a bug. Can you reproduce same issue?

    Back up all data.
    In Contacts, select
    File ▹ Export ▹ Contacts Archive
    from the menu bar, and save the archive to your Desktop.
    If you use iCloud, disable contact synchronization in the iCloud preference pane. When prompted, click Delete From Mac. Re-enable synchronization. Wait for the contacts to re-synchronize, then test.
    If you don't use iCloud, or if the contacts fail to synchronize, delete all contacts, then select
    File ▹ Import…
    and import the archive you created. It may take a few seconds for the contacts to be indexed. Test.
    If you don't like the results of this procedure, quit the application. In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, copy the text on the line below into the box that opens, and press return:
    ~/Library/Application Support/AddressBook
    Restore the folder that opens from the backup you made before you started.

Maybe you are looking for