All Software program in the application folder does not launch

I have a macBook Pro mid 2012. When I click on any software program in the applications folder on the sidebar, it does not launch. What do I need to do?

Please read this whole message before doing anything.
This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot 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, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

Similar Messages

  • Sometimes the contents of the Applications folder does not show in finder

    Using finder I can only display the contents of my Applications folder by clicking on Applications under the Places group on the sidebar. Any other method of navigation (eg selecting Applications from within my Home folder) and the contents are never displayed.
    cheers for any clues...rob

    Thanks very much...that certainly sorted out that bit of confusion. Some app must have created it sometime I guess. It had the special folder Icon as well (the one with the clever A). I deleted it and then recreated it but no special A this time?? ...thanks very much for your help , I can't believe I missed that

  • The Application Manager does not list Light Room as a program to download?

    The Application Manager does not list Light Room 5 as a program to download? I have downloaded Lightroom Version 4 in the past.
    Application Manager Version 7.0.0.324

    I had the same issue yesterday on OSX Lion.
    I manually downloaded another copy of AAM and LR5 appeared.
    Win: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774

  • Get an Error window, The source folder does not contain any supported camera raw files

    I am using CS2 and it would not open up my latest RAW files, I was getting a warning Could not complete your request because it is not the right kinds of document. So, I checked the Camera Raw Plug-in and it says Version 3.7. I see that my camera an Olympus E-20 is supported. But it is not opening the Raw files, the day before I took jpeg and they have opened. I will not trash my Adobe Photoshop CS2 because it was a royal pain to install and I don't know where the CD is.
    I installed the latest DNG Converter and when I try to open up the folder which has all the RAW images that didn't open in Adobe, I still get an Error window that says, "The source folder does not contain any supported camera raw files." Why? It says it supports my Olympus E-20. I actually have the E-20n, I don't think that is the problem. My RAW icons usually show up as small image thumbnails and this time they are gray icons only with the incorrect date under the icon. Is there another product I can use without spending money? These images I took in RAW were special and I don't want to lose them. Please help!
    Esther

    Hello, I was using only CS2 with my Olympus E-20n for 5 years, no problem. It just started acting up in RAW this year. I downloaded Picasa that same day and now it seems to be opening up all of my RAW files that didn't open the other day. So, I think Picasa installed a new plug-in adaption to CS2 because now all my RAW icons have a new logo on them, the same one that's in Picasa. Strange, but it works now and I am not complaining anymore. I love CS2 and the many ways I can adjust RAW files, so I am using it, Picasa is a sideline now that I can take a look at many thumbnails and it organized all my photo files by the year and folders. Amazing free software. I have probably 60,000 images in my computer and an external hard drive and Picasa picked them all up and made a library, cool.

  • The name "Folder" does not exist in the namespace

     I am trying to learn Wpf and doing some of the examples on the Microsoft site. https://msdn.microsoft.com/en-us/library/vstudio/bb546972(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
    I am using Visual studio 2013. As I work through the example I am getting the following error. 
    Error 1
    The name "Folder" does not exist in the namespace "clr-namespace:FolderExplorer".
    c:\users\hbrown\documents\visual studio 2013\Projects\FolderExplorer\FolderExplorer\MainWindow.xaml
    11 17
    FolderExplorer
    Error 2
    The name "Folder" does not exist in the namespace "clr-namespace:FolderExplorer".
    c:\users\hbrown\documents\visual studio 2013\Projects\FolderExplorer\FolderExplorer\MainWindow.xaml
    16 7
    FolderExplorer
    Here is the code:
    <Window x:Class="MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:my="clr-namespace:FolderExplorer"
        Title="Folder Explorer" Height="350" Width="525">
        <Window.Resources>
            <ObjectDataProvider x:Key="RootFolderDataProvider" >
                <ObjectDataProvider.ObjectInstance>
                    <my:Folder FullPath="C:\"/>
                </ObjectDataProvider.ObjectInstance>
            </ObjectDataProvider>
            <HierarchicalDataTemplate 
       DataType    = "{x:Type my:Folder}"
                ItemsSource = "{Binding Path=SubFolders}">
                <TextBlock Text="{Binding Path=Name}" />
            </HierarchicalDataTemplate>
        </Window.Resources>
    I have a class file named Folder.vb with this code. 
    Public Class Folder
        Private _folder As DirectoryInfo
        Private _subFolders As ObservableCollection(Of Folder)
        Private _files As ObservableCollection(Of FileInfo)
        Public Sub New()
            Me.FullPath = "c:\"
        End Sub 'New
        Public ReadOnly Property Name() As String
            Get
                Return Me._folder.Name
            End Get
        End Property
        Public Property FullPath() As String
            Get
                Return Me._folder.FullName
            End Get
            Set(value As String)
                If Directory.Exists(value) Then
                    Me._folder = New DirectoryInfo(value)
                Else
                    Throw New ArgumentException("must exist", "fullPath")
                End If
            End Set
        End Property
        ReadOnly Property Files() As ObservableCollection(Of FileInfo)
            Get
                If Me._files Is Nothing Then
                    Me._files = New ObservableCollection(Of FileInfo)
                    Dim fi As FileInfo() = Me._folder.GetFiles()
                    Dim i As Integer
                    For i = 0 To fi.Length - 1
                        Me._files.Add(fi(i))
                    Next i
                End If
                Return Me._files
            End Get
        End Property
        ReadOnly Property SubFolders() As ObservableCollection(Of Folder)
            Get
                If Me._subFolders Is Nothing Then
                    Try
                        Me._subFolders = New ObservableCollection(Of Folder)
                        Dim di As DirectoryInfo() = Me._folder.GetDirectories()
                        Dim i As Integer
                        For i = 0 To di.Length - 1
                            Dim newFolder As New Folder()
                            newFolder.FullPath = di(i).FullName
                            Me._subFolders.Add(newFolder)
                        Next i
                    Catch ex As Exception
                        System.Diagnostics.Trace.WriteLine(ex.Message)
                    End Try
                End If
                Return Me._subFolders
            End Get
        End Property
    End Class
    Can someone explain what is happening. 
    Thanks Hal

    Did you try to build the application (Project->Build in Visual Studio) ? If the error doesn't go away then and you have no other compilation errors (if you do you need to fix these first), you should replace "FolderExplorer" with the namespace
    in which the Folder class resides. If you haven't explicitly declared a namespace, you will find the name of the default namespace under Project->Properties->Root namespace. Copy the value from this text box to your XAML:
    xmlns:my="clr-namespace:FolderExplorer"
    The default namespace is usually the same as the name of the application by default so if your application is called "FolderExplorer" you should be able to build it.
    If you cannot make it work then please upload a reproducable sample of your issue to OneDrive and post the link to it here for further help.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • Whenever I open the editor in Photoshop Elements 12 it does not work. When I try to click open in the application it does not do anything. None of the buttons work. When I open a photo using file at the top it opens but I cannot edit it or use any of the

    Whenever I open the editor in Photoshop Elements 12 it does not work. When I try to click open in the application it does not do anything. None of the buttons work. When I open a photo using file at the top it opens but I cannot edit it or use any of the features on the left side.

    Hi Nealeh
    Thanks i think I got it working of a fashion.
    Except the replace colour, does not seem to end up with the colour I picked using the picker tool. Its as though it hads not replaced the colour but blended in the desired colour with the old incorrect colour!
    Buy trial and error picking not the right colour but close - which when mixed with the existing colour is close.
    Sorry I can't post the pictures as the Lingerie Mfg, has me under non disclosure.
    The scenario is:-  say a blonded mainly tanned model a high cut [at the hips] corsette style basque, with an ultra low bra line.
    Our dear model, has just come back from St Barts with a fabulous Tan, and equally striking bold Tan lines!.
    So we have great tanned legs, then the 'porcelain white band' where her swimsuit was.
    Likewise we have a tanned face, and arms, shoulders etc and a great tan on the top of the cleavage, then it stops, white band to the top of the ultralow cut bra line of the basque.
    She must have lived in like the most conservative bikini on the planet [50's style], for 2 weeks!
    Had she had a normal skimpy bikini on, no problem!
    If i don't solve it, she will get fired!
    Not a lack of interest in your post, but I was out, and tried to log in to this site; which I could do, on my iPad Air / 5 [whatever its the new one]. And tried to 'sign in' - but it just hung at the
    "Join Adobe Community" adobe sign in splash screen! with he little whell spinning around continuously!!!
    I have Safari on this iPad. Guess that is all it runs.
    So technology is not my friend today!

  • The jar size value in the Application Descriptor does not match the real ja

    Hi,
    when i creat obfuscated package for my application It's posing the
    Error preverifying class A
    Class loading error: Wrong name
    The jar size value in the Application Descriptor does not match the real jar file size.
    It's perfectly working for all the other applications .I tried to change the jar size in the jad file but it's not working.

    Yes, the obfuscator does not change the size value after finishing. You have to do it yourself.
    Mihai

  • Hi. I just wanted to update my 3 apps PS, Brigde and Indesign. After doing that I wasn't ablle to open Brigde??? PS and Indesign works fine. Further more the Application Manager does not seem to register the updates I have made. Everytime I open the compu

    Hi. I just wanted to update my 3 apps PS, Brigde and Indesign. After doing that I wasn't abble to open Brigde??? PS and Indesign works fine. Further more the Application Manager does not seem to register the updates I have made on Indesign and PS. Everytime I open the computer MacIBook 4.1, OS 10.6.7) it looks like I haven't updated software? Please help! Kurt

    Moving this discussion to the Bridge General Discussion forum.
    Kurt Rodahl Hoppe I would recommend reviewing Updates repeatedly applied | CC which discusses how to apply the updates successfully.

  • I have my first mac. the music folder does not appear in favourites from the finder menu so i cant transfer my itunes library

    I have my first mac. I want to transfer my iTunes library from my pc but the music folder does not appear in favourites when I select finder.

    Choose Home from the Finder's Go menu.
    (117823)

  • When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Thx for your help,  Bruce

    When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Happens from Chrome, IE, Word, Excel, Powerpoint. Previously had deskPDF installed but uninstalled correctly. Can't find a preference setting for the auto launch. Thx for your help,  Bruce

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • I have selected to have photos in my icloud but the photo folder does not appear.

    I have selected to have photos in my icloud but the photo folder does not appear in icloud. There are many folders, like mail, but none for photos.

    You can see photo stream photos on icloud.com.  You can only see them on an iOS device or computer that is signed into your account with photo stream enabled.  If you want to see them on the web, you would have to add the photos to a shared stream using the public website option enabled (see http://help.apple.com/icloud/#/mmc0cd7e99).  This gives you a private url allowing you to view them from any computer browser.

  • HT202213 I own toshiba laptops. Both computers have the latest itunes software. However the 'show menu' does not appear on the screen?

    I own toshiba laptops. Both computers have the latest itunes software. However the 'show menu' does not appear on the screen?

    Thanks for the response diesel. I dont think I clarified my question very well. I'm trying to do home sharing between mine and my wifes computers. The intructions say:
    Log in as the same user on each computer.
    Ensure both are current version.
    Choose the correct list in sharing ie Music
    Then in the 'show menu' at the bottom of the screen, choose items not in my library.
    I do not have the show menu to select any songs.
    Any help appreciated.
    Cheers

  • The selected folder does not contain the current site's homepage

    dreamweaver displays the following message when editting some
    sites:
    "WARNING: The selected folder does not contain the current
    site's homepage. The site map cannot be built."
    Then my remote info is cleared!
    I know I'm obviously not doing something, but there is no
    need to clear my remote info!!
    edit: I've selected my home page, but this still doesn't
    explain why Dreamweaver feels the need to erase my remote
    info!!!

    > Then my remote info is cleared!
    Huh?
    This only means that you have not told DW which page is your
    home page.
    Find it in the local file list, and use the right-click
    context menu to so
    designate the file.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "ogre11" <[email protected]> wrote in
    message
    news:f2293h$7lg$[email protected]..
    > dreamweaver displays the following message when editting
    some sites:
    >
    > "WARNING: The selected folder does not contain the
    current site's
    > homepage.
    > The site map cannot be built."
    >
    > Then my remote info is cleared!
    >
    > I know I'm obviously not doing something, but there is
    no need to clear my
    > remote info!!
    >

  • HT4623 In syncing my Iphone 5 for the first time, Facetime disappeared.  Although it shows up under apps in the settings menu, the application itself does not seem to be there.  What happened?  How can I fix this?

    In syncing my Iphone 5 for the first time, Facetime disappeared.  Although it shows up under apps in the settings menu, the application itself does not seem to be there.  What happened?  How can I fix this?

    There has never been a facetime app on the iphone.
    As the manual says, you access from contacts.  Pick a contact and scroll down to the facetime button

  • The executible I build with the application builder does not function the same as my VI file.

    I am using a USB 6008 device with the newest DAQmx drivers and Labview
    8.2 to make analog voltage readings.  Within my main VI I first
    create a data folder in the same location as the VI using a property
    node and then use case statements to call two sub VIs that create a
    data file within the data folder and then collects data.  When I use the
    application builder to create an executible the resulting file does not
    operate the same as the origional VI.  The program appears to be
    reacting to button presses on the GUI, but there is no indication that
    the data folder is being created or that any measurements are buing
    made.  Are there any known issues that may account for this
    anomily?
    -Mike
    Message Edited by TMBurleson on 10-16-2006 03:09 PM

    Are you using the VI Path property, using a reference to the current VI?
    I could be wrong, but if you're attempting to use a path relative to the current VI, I think that does indeed change in a built application. If your VI used to be C:\somewhere\foo.VI, then after building its path would actually be C:\somewhere\foo.EXE\foo.vi . Thus, if foo.VI used to try to make a folder like C:\somewhere\datafolder, the built application would be trying to make C:\somewhere\foo.EXE\datafolder , which wouldn't work.
    This is sort of a shot in the dark, but does this sound like it might be the case?
    EDIT: Dennis beat me to it.Message Edited by kehander on 10-16-2006 03:26 PM

Maybe you are looking for

  • Caption Does Not Allow Me to Type a Message

    How can I write a message in the caption boxes of the different templates within iPhoto when I click email to share a photo as it does not allow any text to be placed or typed into the caption boxes? Can someone suggest something to make this part of

  • Error when scheduling infopackage

    hi all, when i am trying to scheduling infopackage its giving error like Runtime Errors         DBIF_RSQL_SQL_ERROR Except.                   CX_SY_OPEN_SQL_DB SQL ERROR IN DATABASE WHEN ACCESSING A TABLE. This error is occuring in production system.

  • HELP!  -  Fonts not available after migration to Leopard

    My company recently upgraded my Mac from a PowerPC G5 tower - which worked perfectly, to a MacBook Pro Intel Core Duo - so I would be able to work from home. I work in publishing and use pre-set templates and fonts within QuarkXPress. The most import

  • House bank,bank a/c,sub bank a/c

    whats house bank, bank a/c, sub a/c& what is the difference send with example

  • How to deploy Oracle preconfigured vm on Amazon's EC2

    I'm sure this has been answered somewhere, but I just can't find it - so: for development purposes I would like to set up one of the Oracle preconfigured vm's (http://www.oracle.com/technetwork/middleware/soasuite/learnmore/vmsoa-172279.html) on Amaz