System 10.5.8 Sound application missing

Friends were having major problems with Mac OS 10.5.8. I tried to install 10.6 but the installation stalled several times. Through it all, I got OS 10.5.8 running for them again but the sound application is now missing, so I can't get the iMac to play sounds effects nor will it show the Harmann Kardon sound sticks as a sound output. They can't find their original install discs and I do not have that version. Will the sound application for system 10.6 work if I drag that file into their 10.5.8 system?  Any ideas would be appreciated!  Thanks.

Nairy Fuff.
Are you booting from the DVD, or installing from the desktop? (both are possible).
As you appear to have a failed install, check the root level of the Finder (i.e Macintosh HD) to see if a folder has appeared called something Like 'Mac OS Install Data'.
That would contain all the System files that should have been moved into place during the restart.
You could try removing that. It may need a sudo commad in Terminal; not my territory, but ask again if it won't delete normally.
I'm assuming up to now that you did a verify/repair disc on mac HD before starting?

Similar Messages

  • Full System Recovery with Time Machine - Applications missing

    Hi,
    My Macbook recently met a nasty end by a glass of wine and ended up completely dead.  Not to fear, I thought, it's all backed up on my Time Machine.  So I got hold of a Mac Mini and started to attempt to restore my system using Time Machine.  When I got the new mini, I ran my Leopard install disc, and followed the restore from Time Machine process.  The first problem was that the version of OSX on my deceased macbook was newer than the fresh install I was putting on the mini, so the TM restore couldn't work.  So, I continued the clean install, got OSX up and running and then ran the software update so that it was all up to speed (now running 10.5.8 - same as the macbook was).
    Next onto Migration Assistant to restore from my Time Machine backups.  All hunky dory, except that Migration Assistant told me that there were 0.0kb in the profiles.  Once I'd peeled myself off the ceiling, I tried it anyway.  Everything transferred across OK - settings, files, profiles, but no applications.  Lots of money's worth of iLife, iWork, CS5, Office for Mac - missing.  Files, but no way of opening them!
    I had a root round in the TM backup and they were all there, but nothing at all transferred across in the restore.
    What have I missed here?  Should I drag and drop each application over from the TM folder to my new Applications folder?  Surely the risk here is that I'll miss some system files in Application Support etc.
    I really need some help here.  Most of my applications don't have install discs as they were downloaded either from Apple/MS/Adobe etc.

    Not a fan nor expert on TM, but anyway you ca pull the old drive out of the WineBook & use something like this...
    http://eshop.macsales.com/item/NewerTech/U3NVSPATA/

  • Sound application help

    here is another example of a sound application that does not work. can any one help me fix it??
    import java.awt.*;
    import java.applet.*;
    import java.net.URL;
    public class AnotherAudioAttempt{
      public static void AlertSound(){
        try{
          java.io.File file = new java.io.File("file:///home/nova812/myJava/audio/siren.au");
          AudioClip welldoneclip = Applet.newAudioClip(file.toURL());
          welldoneclip.play();
        catch (Exception e){}
      public static void main(String[] argz){
        AlertSound();
    }//end classRon_W

    I did try System.in.read() but it didn't work either. However, going the the archives here I found a version of the following code. finally some code that works. I modified it so that it would play a sound when the app starts. Althoug the code works, pushing the play sound button to fast will cause the app to not play a sound for a long time. some tweeking is needed.
    import java.awt.event.*;
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    public class PlaySound {
      public static void main(String args[]) {
      new PlaySoundFrame();
    class PlaySoundFrame extends Frame implements ActionListener {
      Button playSound = new Button("Play Sound");
      PlaySoundFrame() {
        super();
        /* Add the window listener */
        addWindowListener(new WindowAdapter() {
        public void windowClosing(WindowEvent evt) {
          dispose(); System.exit(0);}});
        playSound.addActionListener(this);
        add(BorderLayout.NORTH,playSound);
        /* Size the frame */
        setSize(200,200);
        /* Center the frame */
        Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize
        Rectangle frameDim = getBounds();
        setLocation((screenDim.width - frameDim.width) / 2,
        (screenDim.height - frameDim.height) / 2);
        /* Show the frame */
        setVisible(true);
        playSnd();
    public void playSnd(){
       AudioClip ac = null;
          try{
            ac = Applet.newAudioClip(new URL("file:///home/nova812/myJava/audio/siren.au"));
          catch(MalformedURLException mfe){
          System.out.println("BadURL!");
          if(ac != null)
            ac.play();
          else
            System.out.println("no sound!!");
      public void actionPerformed(ActionEvent evt){
        if (evt.getSource() == playSound){
          playSnd();
    }Ron_W

  • Sound Application Problems

    Hello,
    Ive been working on a small sound application that just plays music when is starts up. Ive got this:
    import java.applet.AudioClip;
    import java.applet.Applet;
    import javax.swing.*;
    import java.net.URL;
    class Soundf extends JFrame {
         public Soundf() {
              super("Sound");
              AudioClip p = null;
              try {
                   p = Applet.newAudioClip(new URL(new URL("file:z3-light_world1.mid"), "z3-light_world1.mid"));
              catch(Exception e){
                   System.out.println("error");}
              p.play();
              setVisible(true);
    class Sound {
         public static void main(String args[]) {
              JFrame f = new Soundf();
    }I dont get any errors, but it just doesnt play the mid file. Please help.

    p = Applet.newAudioClip(new URL(new
    URL("file:z3-light_world1.mid"),
    "z3-light_world1.mid"));The contructor URL( URL, String) (eg URL( new URL( "http://www.example.com" ), "index.html" )creates a URL of http://www.example.com/index.html.

  • Sound application

    Hello.
    I sometimes get lost in the sound applications (games), with it all at once, and all the other sounds on the spot. How can I fix it?

    Ive solved my problem, but I have another question.
    Does anyone know how I could put in volume control?
    Ive searched the forums, but I still cant figure it
    out.The SourceDataLine has a control called "Master Gain" that can be used to control volume. Note that it is not linear, it's calibrated in decibles. So an adjustment of -10 will cut the volume in half. It also has range limits that may vary with your system and will trhow exceptions if they are exceeded. Here's the code you need to set it.
        public void setGain(float gain) {
            FloatControl g = (FloatControl) line.getControl(FloatControl.Type.MASTER_GAIN);
            g.setValue(gain);
        }You'll find some documentation here.

  • "System cannot connect to the application server" (Admin Client only)

    Hello Experts,
    I have a strange issue: I am getting "system cannot connect to the application server" when I am trying to launch BPC Admin.
    I successfully connect to the same application server with Excel client on the same PC.
    I am able to connect via Admin from another PC.
    The installation in question is a new installation. The only difference between my PC and a troubled one is IE7 vs. IE8 - IE8 is the one giving issues.
    BPC site is in Local Intranet zone. Windows Authentication is enabled. What am I missing? Local Policy? IE8 settings? Folder permissions (I'm local admin on both PCs)?
    It's BPC 7.5 SP05.
    Thanks in advance,
    Akim
    P.S. OS: Windows Server 2003 SP2 32-bit (Citrix box).
    Edited by: Akim Zubarchuk on Mar 30, 2011 12:28 AM

    Hi Akim,
    Check client diagnostic for admin client can provide good information.
    Any way if you are able to connect with excel client not with admin client I will say:
    1. Check the rights of user used to connect with admin console
    2. Check proxy settings
    3. Disable antivorus or firewall into that computer.
    4. Make sure the installation of admin client was correct done.
    In my opinion it is a big probability to be point 3 or 4.
    Regards
    Sorin Radulescu

  • Applications missing from Creative Cloud Desktop application

    If you are unable to locate a specific application then it is likely the computer you are using does not meet the current system requirements.  In the following example you can see that After Effects and Premiere Pro are missing from the list of available applications.
    When I look at the System information for my Windows installation I am informed that I have a 32-bit version of Windows 8.
    This means that I will be unable to install Premiere Pro or After Effects as my current computer does not meet the minimum system requirements.  You can find a list of Creative Cloud system requirements at Adobe Creative Cloud – Tech specs.
    For additional information please see Not all apps displayed for download | Creative Cloud desktop app, Adobe Application Manager.
    If you have confirmed that your computer meets and exceeds all of the listed System requirements then please see CC desktop lists applications as "Up to Date" when not installed.
    Message was edited by: Jeff Wright
    Updated ink to http://helpx.adobe.com/creative-cloud/kb/all-apps-displayed-aam.html.

    Hi Jeff,
    I have a lot of problems. First og all the system will not accept my account and even I have downloaded CPLauncher and can see the software, I will not genereate password. Nothing works, and if do not, I have to stop paying, because my boss are a little angry.
    He says: We pay and it do not work. Find other software. We can’t afford you sitting doing nothing. If Adobe makes such a software that causes us trouble, we will change to something else, we do not need Aobe for our projects.
    So Jeff – The software are very complicated, it can run, It can’t genereate license,  and on top of all this, I have to defend Adobe. Well – I will not. I have been fighting in 3 weeks and this week is the last. Monday morning I will stop using Adobe coud and stop my membership.
    Med venlig hilsen / Kind regards
    Michael Peters
    Tlf.: (+45) 70 25 25 85
    Mobile: (+45) 30 76 54 50
    www.europeanmannequins.com
    Fra: Jeff A Wright
    Sendt: 18. november 2014 17:51
    Til: Michael Peters - European Mannequins & Shop
    Emne:  Applications missing from Creative Cloud Desktop application
    Applications missing from Creative Cloud Desktop application
    created by Jeff A Wright<https://forums.adobe.com/people/JeffAWright> in Creative Cloud Download & Install - View the full discussion<https://forums.adobe.com/message/6940856#6940856>

  • No system manager locations set, search application might not be ready yet

    Hi,
    I am just setting up a new SharePoint 2013 environment (Windows server 2008 R2 + SQL Server 2008 R2) and I am getting this error message in powershell when I try to save my new search topology: No system manager locations set, search application might
    not be ready yet. The installation script used to install and create the search service originates from this link: http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=378 and I receive the error message after running $clone.Activate().
    ULS is writing this:
    05-29-2013 14:57:00.94 mssearch.exe (0x19C0) 0x1A68 SharePoint Server Search Crawler:Content Plugin cd11 Critical Content Plugin can not be initialized - list of CSS addresses is not set.
    05-29-2013 14:56:08.27 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration dkd5 High synchronizing search service instance 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:08.27 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration eff0 High synchronizing search data access service instance 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:09.38 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration ajzc7 Medium Cleanup of Orphan Systems in server SR00667 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:09.46 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration agwve Medium Synchronizing legacy admin 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:09.46 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration ai4f1 High Unable to get systemmanagerlocation from db 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:09.46 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration ai84s Medium Skipping legacy admin sync as there is no system manager location set 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:09.46 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration agwvc Medium Skipping Topology Synchronize.The active topology does not have any Components. 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    05-29-2013 14:56:09.46 OWSTIMER.EXE (0x09B0) 0x1304 SharePoint Server Search Administration ajnco Medium Cleaning up Orphan nodes in system : 7B4831 8f28209c-5d35-a0cc-7fad-bd7b088335ee
    So basically all else is going fine before saving the clone. Application pool is created, search service and it´s proxy is created (the databases are also created in SQL). The clone is after this created and then the components are added.
    I have tested with both March and April CU. I use separate accouns for search service, installation and so on. I have tested giving the search application pool account local admin right but didnt make any difference.
    Some posts in Internet around this matter is pointing towards there might be 4 missing patches like here: http://blog.steigis.ch/sharepoint/sps2013/search-in-starting-state/  They are all installed on my server.
    Search host controller service and SharePoint Server Search are started.
    Before creating the service I ran this. I have done this on all my other installations of search to solve the problem with the host service is in "starting" state. Info taken from here: http://mmman.itgroove.net/2012/12/search-host-controller-service-in-starting-state-sharepoint-2013-8/
    $acl = Get-Acl HKLM:\System\CurrentControlSet\Control\ComputerName
    $person = [System.Security.Principal.NTAccount] "Users"
    $access = [System.Security.AccessControl.RegistryRights]::FullControl
    $inheritance = [System.Security.AccessControl.InheritanceFlags] "ContainerInherit, ObjectInherit"
    $propagation = [System.Security.AccessControl.PropagationFlags]::None
    $type = [System.Security.AccessControl.AccessControlType]::Allow
    $rule = New-Object System.Security.AccessControl.RegistryAccessRule($person, $access, $inheritance, $propagation, $type)
    $acl.AddAccessRule($rule)
    Set-Acl HKLM:\System\CurrentControlSet\Control\ComputerName $acl
    $sh = Get-SPServiceInstance | ? {$_.TypeName -eq "Search Host Controller Service"}
    After this I do a server restart and continue with creating the search service and its components.
    Any ideas?

    I had exactly the same issue when setting up a new SharePoint 2013 environment (Windows Server 2012, SP2013 with PU March 2013 and CU April 2013, .NET 4.5). I have tried almost everything during the last weeks to configure the Search Service Applicatione,
    e.g. create the service from GUI, create it from PowerShell, verify my search account had enough permissions, check for missing updates etc. etc. Same error no matter what I tried.
    Using another SharePoint farm I went through a similar configuration of the Search Service Application. I used exactly the same script as I did on the first server and the setup completed without any issues. So why did the same features fail during the setup?
    To find an answer I compared the two farms and the only thing I noticed that were different was the lack of .NET 3.5 on the application and WFE server in the first farm. I then enabled .NET 3.5 features and now the Search Service Application works as expected
    I had no idea enabling .NET 3.5 features would solve the issue - I thought .NET 4.5 was backward compatible and SharePoint only requires .NET 4.5 according the
    requirements?

  • System.IO.FileNotFoundException: The Web application at ..not found - when getting document versions in a doc lib

    i have created a    asmx file using vs 2012 4.5 framework, and published to my d:\  drive  and mapped to a  iis  web site
    but when i trued to consume this from a another web appln, it throws me the below error:
     System.IO.FileNotFoundException: The Web application at http://srvr:4000/sites/mysitecollec could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a
    new request URL mapping to the intended application.
       at Microsoft.SharePoint.SPSite.LookupSiteInfo(SPFarm farm, Boolean contextSite, Boolean swapSchemeForPathBasedSites, Uri& requestUri, Boolean& lookupRequiredContext, Guid& applicationId, Guid& contentDatabaseId, Guid& siteId,
    Guid& siteSubscriptionId, SPUrlZone& zone, String& serverRelativeUrl, Boolean& hostHeaderIsSiteName, Boolean& appWebRequest, String& appHostHeaderRedirectDomain, String& appSiteDomainPrefix, String& subscriptionName, String&
    appSiteDomainId, Uri& primaryUri)
       at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, Boolean swapSchemeForPathBasedSites, SPUserToken userToken)
       at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken)
       at Microsoft.SharePoint.SPSite..ctor(String requestUrl)
       at FetchlatestDocDet6Jan.FetchLatestDoc6Jan.<>c__DisplayClass1.<FetchLatestDocVer>b__0() in d:\PublishWSFetchLatestDoc6Jan.asmx.cs:line 41
       at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()
       at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)
       at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)
       at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated secureCode)
       at FetchlatestDocDet6Jan.FetchLatestDoc6Jan.FetchLatestDocVer(String fileName, String processID, String subProcessId) in d:\PublishedWS\FetchLatestDoc6Jan.asmx.cs:line 35
    [WebMethod]
            public DataTable FetchLatestDocVer(string fileName,string processID,string subProcessId)
                DataTable dtFiles = new DataTable("File Details");
                dtFiles.Columns.Add("File Name");
                dtFiles.Columns.Add("File Version");
                dtFiles.Columns.Add("File Url");
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    // implementation details omitted       
                //using (SPSite mySite = new SPSite(siteUrl))
                using (SPSite mySite = new SPSite("http://srvr:4000/sites/mysitecoll"))
                    using (SPWeb myWeb = mySite.OpenWeb())
                        SPList oList = myWeb.Lists["TEST DOC LIB "];
                        SPView oView = oList.Views["All Documents"];                  // SPQuery oQuery = new SPQuery(oView);
                        SPQuery oQuery = new SPQuery();
                        string query = "<Query><Where><And><Eq><FieldRef Name=Title/>" + "<Value Type=Text>" + fileName + "</Value></Eq>"
                                        +"<Eq><FieldRef Name=ProcessID /><Value Type=Text>"+processID+"</Value></Eq>"
                                        +"<Eq><FieldRef Name=SubProcessID /><Value Type=Text>"+subProcessId+"</Value></Eq>"
                                        +"</And></Where></Query>";
                        oQuery.Query = query;                    
                        oQuery.ViewAttributes = "Scope=\"Recursive\"";
                        SPListItemCollection collListItemsAvailable =
                         oList.GetItems(oQuery);
                        foreach (SPListItem oListItemAvailable in collListItemsAvailable)
                           // Console.WriteLine(oListItemAvailable["Name"].ToString());
                            SPFileVersionCollection versions = oListItemAvailable.File.Versions;
                            // If the file has versions, loop through all of the versions
                            if (versions != null)
                                if (versions.Count > 0)
                                    foreach (SPFileVersion version in versions)
                                     //   Console.WriteLine("Version Info:: {0}, {1}", version.VersionLabel, version.Url);
                                        DataRow dr = dtFiles.NewRow();
                                        dr[0] = oListItemAvailable["Name"].ToString();
                                    //Added data to the datatable
                                else
                                  //  Console.WriteLine("Version Info:: {0}, {1}", oListItemAvailable.File.UIVersionLabel, oListItemAvailable.File.Url);
                                    DataRow dr = dtFiles.NewRow();
                                    dr[0] = oListItemAvailable["Name"].ToString();
                                    dr[1] = oListItemAvailable.File.UIVersionLabel;
                                    dr[2] = oListItemAvailable.File.Url;
                                    dtFiles.Rows.Add(dr);
                return dtFiles;

    "The Web application at http://server:port/ could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing
    content, the system administrator may need to add a new request URL mapping to the intended application"
    Here are the most common reasons this error can occur:
    The code is executed on a different machine - The SharePoint object model (except the Client API) requires to be run on the SharePoint server itself. It is not possible to run the application on a server which is not within the same
    SharePoint farm the code is trying to access.
    Insufficient Rights on the site collection - The code is executed in context of an account which does not have read permission on the site collection
    Incorrect Url being used - Verify that the site works correct in a browser and double check that the server is correct registered in the AAM settings
    Incorrect bitness - The SharePoint object model needs to be executed with the same bitness as the operating system. That means you cannot use the SharePoint object model in a 32-bit application if the Operating System and SharePoint
    are installed as 64-bit version. Ensure to compile the project using the correct bitness (64-bit on a 64-bit machine vs. 32-bit on a 32-bit machine)
    Incorrect .NET framework version -  Ensure that the project is configured to use .NET 3.5. .NET 4.0 cannot be used with the current versions of SharePoint
    from Mr.Stefan's post, i have checked with my code : as per the first reason: (1)
    i am running the code from my  SP 2013 machine only. but the only difference is that, i am using a  asp.net web appln and have added a SP references of 15 hive and trying to make a  lists.asmx file.
    also checked the reasons
    2,3 ,4 ,5 all are  fine from my end.
    here just wanna know: abt the below approach : whether its Correct or NOT.
    create a plain GetDocsWebService.asmx file from asp.net 3.5 framework and  write the code for retrieving items from doc.lib using SPSite, spweb, splists, xmldocument and retrieve a datatable . [[[ i have added a web reference of sp 2013 microsoft.sharepoint
    dll from  isapi folder, in this GetDocsWebService.asmx project ]]
    i deployed this web service on my SP server's  new iis site, c:\inetpub\wwwroot\GETDOCSPUBLISH  site
    now, at present , am adding a  normal asp.net 4.5 web appln and add the  web reference of this custom web service and trying to consume.
    at this point am getting mulitpl errors: like
    1) platform not supported : am stuck with this error!!
    2) sometimes, am getting document not valid...<html> <head> document not valid........</html>
    for the above 2 errorrs, i still could not able to find a solution!!
    is it because, lists.asmx is not supported in sp 2013? we need to depend on rest-api/ecma/csom ?? 
    so my question is ,  what should be the correct ad most recommended approach  for reading doc lib/ splist  records/items from a  remote macihne.

  • I've updated my Macbook Pro and my iMac with Maverick, updating the various apps. On my Macbook, everything functions perfectly. On my iMac, I get the Your System has Run out of Application Memory, and it's based our Mail, the only app not updated. Ideas?

    Maverick and Your System message
    I've updated my Macbook Pro and my iMac with Maverick, updating the various apps (Pages, Aperture, iPhoto, Numbers & iMovie, too) in the process.
    On my Macbook, everything functions perfectly. On my iMac, I get the Your System has Run out of Application Memory message. But it's not Calendar, it's Mail that not only won't open, but when it does now, it takes the entire system out with it.
    I open Safari, and it works. I open Firefox, and it works and Safari still works. I open Calendar and it works, Safari and Firefox continue to work. I open Reminders, and everything still works.
    I open Aperture, and it opens Finder instead, showing the 3.5 update that was installed two days ago (and Aperture has functioned), but doesn't seem to update the app; after about 20 seconds the update disappears and I can now open Aperture and it shows I'm now opening the updated Aperture, which it didn't show before.
    I click on Mail, and the cursor spins for ten minutes. The mail window finally opens, but the cursor spins and does not connect to upload new mail, and I finally Force Quit Mail. Since the Maverick update, even though Mail was not updated (and maybe because Mail was not updated), I have been able to receive emails twice, and then the program crashed.
    Besides the Aperture app, Pages didn't fully update on the iMac, and I had to remove the old Pages icon from the dock after the new program loaded up from Applications.
    Any ideas?

    Maverick and Your System message
    I've updated my Macbook Pro and my iMac with Maverick, updating the various apps (Pages, Aperture, iPhoto, Numbers & iMovie, too) in the process.
    On my Macbook, everything functions perfectly. On my iMac, I get the Your System has Run out of Application Memory message. But it's not Calendar, it's Mail that not only won't open, but when it does now, it takes the entire system out with it.
    I open Safari, and it works. I open Firefox, and it works and Safari still works. I open Calendar and it works, Safari and Firefox continue to work. I open Reminders, and everything still works.
    I open Aperture, and it opens Finder instead, showing the 3.5 update that was installed two days ago (and Aperture has functioned), but doesn't seem to update the app; after about 20 seconds the update disappears and I can now open Aperture and it shows I'm now opening the updated Aperture, which it didn't show before.
    I click on Mail, and the cursor spins for ten minutes. The mail window finally opens, but the cursor spins and does not connect to upload new mail, and I finally Force Quit Mail. Since the Maverick update, even though Mail was not updated (and maybe because Mail was not updated), I have been able to receive emails twice, and then the program crashed.
    Besides the Aperture app, Pages didn't fully update on the iMac, and I had to remove the old Pages icon from the dock after the new program loaded up from Applications.
    Any ideas?

  • Just installed CC on my PC, Windows 7, 64 bit system. Not seeing any applications on the desktop or installation folder. However, all the resource files are present in the installation folder. What am I doing wrong?

    Just installed CC on my PC, Windows 7, 64 bit system. Not seeing any applications on the desktop or installation folder. However, all the resource files are present in the installation folder. What am I doing wrong?
    I've installed three times with no luck. I downloaded the Creative Cloud Packager off the licensing site: https://licensing.adobe.com. I unpacked and choose my applications. The install seemed to be successful, but I don't so any of the applications anywhere.

    Hi,
    Creating package doesn't mean it will install the product,
    You will need to install the package now. Please follow the instructions mentioned in the below articles
    Creative Cloud Help | Creating or editing packages
    Creative Cloud Help | Deploying packages
    Please let me know if it doesn't help.
    Regards,
    Devendra

  • 'Your system has run out of application memory'?!

    I've seen many users experiencing this same problem throughout the community, but none of the fixes have given me a permanent solution. Details of the machine are below, as well as what happens when the problem hits/triggers.
    MBP Retina running OS X Yosemite 10.10.2 (occurred in previous versions as well, thought the latest update would help but it didn't)
    15-Inches Mid 2014 with 16 GB of Ram
    Been using this Mac for good 6 months now, and one fine day of normal usage the whole system seems really laggy and slow and all of a sudden i'm unable to access anything and barely move my mouse. Then, a window pops out, telling me "Your system has run out of application memory", gracefully showing me that I have to force quit all my programmes for me to just stare at my desktop in utter disappointment.
    I've been using Yosemite for awhile now (updated few days since the release) and haven't encountered any major issues, this being the first. Reading through many threads many have said that the problem lies with opening the Mail app, yet I haven't touched that app in months. I've also tried resetting the PRAM on my machine when it happens and the problem comes back again after several minutes of normal usage (iTunes, App Store). Checking the memory usage with the Memory Clean app, it tells me I'm down to a measly '15.58 MB' of memory, and it justfluctuates at that until I give it a restart again. This can't keep happening - I can barely use the Mac for 10 minutes without having to restart it, only to be able to use it only again for another 10 minutes.
    Opening Activity Monitor tells me that mds_stores is the main root of the problem, yet I can't seem to shut the process down. I've googled and many say that mds_stores is spotlight indexing, but taking up all 16 GB of ram? That shouldn't be the case. Is there a fix to this? Does Apple know of its existence?
    Included some screenshots below:

    Step 1
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -F '$Time $Message' -k Sender mdworker -o -k Message Rne Norm -k Sender mds | tail | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message. 
    The Terminal window doesn't show the output. Please don't copy anything from there.
    If any personal information appears in the output, anonymize before posting, but don’t remove the context.
    Step 2
    Enter the following command as in Step 1 and post the output:
    mdutil -as 2>&- | pbcopy
    You can then quit Terminal.
    Step 3
    Launch the Console application in the same way you launched Terminal. In the Console window, look under the heading DIAGNOSTIC AND USAGE INFORMATION on the left for crash reports related to Spotlight. If you don't see that heading, select
              View ▹ Show Log List
    from the menu bar. A Spotlight crash report has a name beginning in "mds" or "mdworker" and ending in ".crash". Select the most recent such report, if any, from the System and User subcategories and post the entire contents—the text, please, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post any other kind of diagnostic report, such as hang logs—they're very long and not helpful.

  • Application messages are in the system log instead of the application log

    Hi SAP GURUS.
    The standard output is created from the outbound delivery .
    All the messages are hitting the system log instead of the application log .
    This is after the upgrade from 4.6c to ECC 6.0 .
    Please provide the details how to move the log to the application log since the output is the standard output (SAP provided output type ).

    verzunof wrote:
    Hello,
    My system.log is filled with these messages, they repeat every second.
    Jan 21 18:31:47 Maki-Mac kernel[0]: AppleFWOHCI_AsyncReceive::waitForDMA - context not going inactive.
    Jan 21 18:31:47 Maki-Mac kernel[0]: AppleFWOHCI_AsyncTransmit::waitForDMA - context not going inactive.
    Do these messages indicate a problem? If so what that could be problem and the solution?
    Can this contribute to the sleep/wakeup problem when iMac won't wakeup after being put to sleep manually and not sleeping according to Power Saving settings?
    Thanks a lot.
    verzunof wrote:
    I'm not certain if those messages indicate a power issue but you can try *resetting the System Management Controller* and see if that helps. Here's how: http://support.apple.com/kb/HT1806
    "The System Management Controller (SMC) is a chip on the logic board that controls all power functions for your computer. If your computer is experiencing any power issue, resetting the SMC may resolve it. The SMC controls several functions, including:
    Telling the computer when to turn on, turn off, sleep, wake, idle, and so forth.
    Handling system resets from various commands.
    Controlling the fans."
    Carolyn

  • Your system has run out of application memory Premiere pro cc 2014

    Hi,
    I've been getting the "your system has run out of application memory" message while working on a new project in pr pro cc.
    Here's what i've done so far:
    Updated to OS X 10.9.5 and restarted computer
    went into my activity monitor and stopped programs that were taking up memory, but that didn't solve the problem the message would pop up over and over again.
    this is the first time i've seen this message. I installed the universal free trial red giant plug ins for PR Pro . I'm starting to think that the plug ins are the problem.
    I used several of the universal plugins from red giant on my entire project. I was able to export the project twice w no problems but then when i went back into the project and the notification kept popping up!
    I'm using
    PLS HELP!!!
    thanks!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    In the Console window, look under the heading DIAGNOSTIC AND USAGE INFORMATION on the left for crash or panic reports. If you don't see that heading, select
    View ▹ Show Log List
    from the menu bar.
    A crash report has a name that begins with the name of the crashed process and ends in ".crash". It may be under either of the two subcategories, "System" and "User." A panic report has a name that begins with "Kernel" and ends in ".panic".
    Select the most recent of each and post the entire contents — the text, please, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post any other kind of diagnostic report, such as a hang log — they're very long and not helpful.

  • I have downloaded an album and some of the songs where sounds are missing what can I do?

    I have downloaded an album and some of the songs where sounds are missing what can I do?

    Delete the files from iTunes. Go to the iTunes Store. Look to the right side of the iTunes Store window for the Purchased function. You can find all of your past purchases there.

Maybe you are looking for