Extreme Slow Renders - Ridiculous

This is absolutely ridiculous how this app is running.  I cant even play my (2 min - 1920x1080) back without waiting for 5 minutes every time I even move the cursor.
I've tried re-installing FCP X from app store
I've trashed prefs with Digital Rebellions Trash Prefs
I've trashed all render files for all projects
I've disk repaired my hard drive.
Still runs slower than mud.
Its crazy frustrating. 
Im running:
OS 10.9.2
10.1.1
2 X 2.26 Quad-Core Intel Xeon (2009)
26GB DDR3 ram

How many stills?
High numbers of stills can slow things down…but shouldn't be as laggy as you describe. In the viewer's display options (the disclosure triangle upper right corner) see what happens if you choose Better Performance in Quality.
If that isn't sufficient, see whether you get the same laggy performance running the app from an administratively-enabled new user account.
Russ

Similar Messages

  • How do I fix extremely slow rendering with buffered images?

    I've found random examples of people with this problem, but I can't seem to find any solutions in my googling. So I figured I'd go to the source. Basically, I am working on a simple platform game in java (an applet) as a surprise present for my girlfriend. The mechanics work fine, and are actually really fast, but the graphics are AWFUL. I wanted to capture some oldschool flavor, so I want to render several backgrounds scrolling in paralax (the closest background scrolls faster than far backgrounds). All I did was take a buffered image and create a graphics context for it. I pass that graphics context through several functions, drawing the background, the distant paralax, the player/entities, particles, and finally close paralax.
    Only problem is it runs at like 5 fps (estimated, I havn't actually counted).
    I KNOW this is a graphics thing, because I can make it run quite smoothly by commenting out the code to draw the background/paralax backgrounds... and that code is nothing more complicated than a graphics2d.drawImage
    So obviously I am doing something wrong here... how do I speed this up?
    Code for main class follows:
    import javax.swing.JApplet;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.awt.event.*;
    import Entities.*;
    import Worlds.*;
    // run this applet in 640x480
    public class Orkz extends JApplet implements Runnable, KeyListener
         double x_pos = 10;
         double y_pos = 400;
         int xRes=640;
         int yRes=480;
         boolean up_held;
         boolean down_held;
         boolean left_held;
         boolean right_held;
         boolean jump_held;
         Player player;
         World world;
         BufferedImage buffer;
         Graphics2D bufferG2D;
         int radius = 20;
         public void init()
              //xRes=(int) this.getSize().getWidth();
              //yRes=(int) this.getSize().getHeight();
            buffer=new BufferedImage(xRes, yRes, BufferedImage.TYPE_INT_RGB);
            bufferG2D=buffer.createGraphics();
              addKeyListener(this);
         public void start ()
                player=new Player(320, 240, xRes,yRes);
                world=new WorldOne(player, getCodeBase(), xRes, yRes);
                player.setWorld(world);
               // define a new thread
               Thread th = new Thread (this);
               // start this thread
               th.start ();
         public void keyPressed(KeyEvent e)
              //works fine
         }//end public void keypressed
         public void keyReleased(KeyEvent e)
              //this works fine
         public void keyTyped(KeyEvent e)
         public void paint( Graphics g )
               update( g );
        public void update(Graphics g)
             Graphics2D g2 = (Graphics2D)g;              
             world.render(bufferG2D);                
             g2.drawImage(buffer, null, null);
         public void run()
              // lower ThreadPriority
              Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
              long tm;
              long tm2;
              long tm3;
              long tmAhead=0;
              // run a long while (true) this means in our case "always"
              while (true)
                   tm = System.currentTimeMillis();
                   player.moveEntity();
                  x_pos=player.getXPos();
                  y_pos=player.getYPos();
                  tm2 = System.currentTimeMillis();
                    if ((tm2-tm)<20)
                     // repaint the applet
                     repaint();
                    else
                         System.out.println("Skipped draw");
                    tm3= System.currentTimeMillis();
                    tmAhead=25-(tm3-tm);
                    try
                        if (tmAhead>0) 
                         // Stop thread for 20 milliseconds
                          Thread.sleep (tmAhead);
                          tmAhead=0;
                        else
                             System.out.println("Behind");
                    catch (InterruptedException ex)
                          System.out.println("Exception");
                    // set ThreadPriority to maximum value
                    Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
         public void stop() { }
         public void destroy() { }
    }Here's the code for the first level
    package Worlds;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.image.BufferedImage;
    import java.util.*;
    import javax.swing.*;
    import javax.imageio.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.io.File;
    import java.net.URL;
    import java.awt.geom.AffineTransform;
    import Entities.Player;
    public class WorldOne implements World
         Player player;
         //Location of Applet
         URL codeBase;
         // Image Resources
         BufferedImage paralax1Image;
         BufferedImage paralax2Image;
         BufferedImage backgroundImage;
         // Graphics Elements     
         int xRes;
         int yRes;
         double paralaxScale1,paralaxScale2;
         double worldSize;
         int frameX=1;
         int frameY=1;
         public WorldOne(Player player, URL codeBase, int xRes, int yRes)
              this.player=player;
              this.codeBase=codeBase;
              this.xRes=xRes;
              this.yRes=yRes;
              worldSize=4000;
            String backgroundImagePath="worlds\\world1Graphics\\WorldOneBack.png";
            String paralax1ImagePath="worlds\\world1Graphics\\WorldOnePara1.png";
            String paralax2ImagePath="worlds\\world1Graphics\\WorldOnePara2.png";
            try
            URL url1 = new URL(codeBase, backgroundImagePath);
             URL url2 = new URL(codeBase, paralax1ImagePath);
             URL url3 = new URL(codeBase, paralax2ImagePath);
            backgroundImage = ImageIO.read(url1);
            paralax1Image  = ImageIO.read(url2);
            paralax2Image = ImageIO.read(url3);
            paralaxScale1=(paralax1Image.getWidth()-xRes)/worldSize;
            paralaxScale2=(paralax2Image.getWidth()-xRes)/worldSize;
            catch (Exception e)
                 System.out.println("Failed to load Background Images in Scene");
                 System.out.println("Background Image Path:"+backgroundImagePath);
                 System.out.println("Background Image Path:"+paralax1ImagePath);
                 System.out.println("Background Image Path:"+paralax2ImagePath);
         }//end constructor
         public double getWorldSize()
              double xPos=player.getXPos();
              return worldSize;
         public void setFramePos(int frameX, int frameY)
              this.frameX=frameX;
              this.frameY=frameY;
         public int getFrameXPos()
              return frameX;
         public int getFrameYPos()
              return frameY;
         public void paralax1Render(Graphics2D renderSpace)
              int scaledFrame=(int)(paralaxScale1*frameX);
              renderSpace.drawImage(paralax1Image,-scaledFrame,0,null); //Comment this to increase performance Massively
         public void paralax2Render(Graphics2D renderSpace)
              int scaledFrame=(int)(paralaxScale2*frameX);
              renderSpace.drawImage(paralax2Image,-scaledFrame,0,null); //Comment this to increase performance Massively
         public void backgroundRender(Graphics2D renderSpace)
              renderSpace.drawImage(backgroundImage,null,null); //Comment this to increase performance Massively
         public void entityRender(Graphics2D renderSpace)
              //System.out.println(frameX);
              double xPos=player.getXPos()-frameX+xRes/2;
             double yPos=player.getYPos();
             int radius=15;
             renderSpace.setColor (Color.blue);
            // paint a filled colored circle
             renderSpace.fillOval ((int)xPos - radius, (int)yPos - radius, 2 * radius, 2 * radius);
              renderSpace.setColor(Color.blue);
         public void particleRender(Graphics2D renderSpace)
              //NYI
         public void render(Graphics2D renderSpace)
              backgroundRender(renderSpace);
              paralax2Render(renderSpace);
              entityRender(renderSpace);
              paralax1Render(renderSpace);
    }//end class WorldOneI can post more of the code if people need clarification. And to emphasize, if I take off the calls to display the background images (the 3 lines where you do this are noted), it works just fine, so this is purely a graphical slowdown, not anything else.
    Edited by: CthulhuChild on Oct 27, 2008 10:04 PM

    are the parallax images translucent by any chance? The most efficient way to draw images with transparent areas is to do something like this:
         public static BufferedImage optimizeImage(BufferedImage img)
              GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();                    
              GraphicsConfiguration gc = gd.getDefaultConfiguration();
              boolean istransparent = img.getColorModel().hasAlpha();
              BufferedImage img2 = gc.createCompatibleImage(img.getWidth(), img.getHeight(), istransparent ? Transparency.BITMASK : Transparency.OPAQUE);
              Graphics2D g = img2.createGraphics();
              g.drawImage(img, 0, 0, null);
              g.dispose();
              return img2;
         }I copied this from a util class I have and I had to modify it a little, I hope I didn't break anything.
    This piece of code does a number of things:
    - it allows the images to be hardware accelerated
    - the returned image is 100% compatible with the display, regardless of what the input image is
    - BITMASK transparent images are an incredible amount faster than translucent images
    BITMASK means that a pixel is either fully transparent or it is fully opaque; there is no alpha blending being performed. Alpha blending in software rendering mode is very slow, so this may be the bottleneck that is bothering you.
    If you require your parallax images to be translucent then I wouldn't know how to get it to draw quicker in an applet, other than trying out java 6 update 10 to see if it fixes things.

  • Premiere Pro CC continuous crash and extremely slow renders on a new Mac Pro.

    Hello,
    recently we changed our editing machines with the new Mac Pro with this configuration:
    - CPU 3,5 GHz 6 core Intel Xeon E5
    - 32 GB RAM
    - 2x AMD FirePro D700 6 GB
    we work on a server connected to the Mac Pro in Dual Ethernet configuration.
    The rendering of a sequence at 1920x1080 with 3 video tracks (video footage converted at ProRes 422 LT, a title on a linked After Effects Comp and a PSD graphic overlay of a small logo) of the length of about 3 minutes it takes about 4 hour... when it doesn't crash.
    When it crash, usually when i simply scroll the timeline, i receive an error message very long (if you want I can send you a rtf file about it, it's too long to paste it here).
    These are my system information:
    - Premiere Pro CC 8.2.0 (65)
    - I've installed every updates available at this time
    - OS X Yosemite 10.10.2
    Thank you very much in advance, and sorry for my bad english.

    Thanks Andrea for your assistance in reporting that additional information. You have come across an intermittent bug which has been reported by other users with no reliable repro steps for us to follow in house. So it appears to be mainly system specific, but we're not even sure which sorts of systems demonstrate it yet.
    One other thing to try is clearing your media cache files (from preferences > media panel). In the meantime,e the best thing to do is make sure you submit those crash logs to adobe whenever you get them. This helps us identify common thread among various users who may be experiencing the same problem. Also, if you have time, please file a bug report describing the steps that caused the issue in your case: http://adobe.ly/ReportBug
    Please be as specific as possible when describing your steps. Without a repeatable case, a bug like this is very, very difficult to fix. Thanks again for your support.
    To work around the sloe render for AE comp problem, please try right clicking on the comp in the timeline and then choose the "Render and Replace" command to transcode it out to a more easily handled format. This should help a lot with your performance slowness, and you will still have the ability to restore the original comp files if needed.

  • 10.1.4 Extremely Slow Rendering

    Specs:
    MacBook Pro 13-inch Mid 2010
    2.4GHz Intel Core 2 Duo
    8GB Memory
    NVIDIA GeForce 320M 256 MB
    133GB available on Macintosh HD
    631.62GB/1Tb available on External HD
    I'm running FCPX 10.1.4, and have recently been experiencing unbearably slow render times. When the render doesn't get stuck at 36%, rendering any part of my 2min project takes hours. Three hours achieved a 7% render on an adjustment to the 2minutes of footage.
    Not a large amount of footage was brought into the event, which at first I created both the event and project on my internal hard drive, but after reading some troubleshooting tips I have done the following:
    Moved both the library containing the project and event to an external hard drive
    Used Render All Command to no effect
    Quit fcpx and re-open to resume render, no difference
    Restart computer and re-open fcpx, no difference
    Turn off background render and start rendering manually, selecting one clip that needs to be rendered at a time, no difference.
    What's being rendered is almost all video and text effects applied to the clips in my timeline. I've tried everything I could find and no difference. Anyone know what is wrong?
    Thanks In Advance

    I am afraid that your GPU may be starved of VRAM to handle this task. 256MB is very very low.
    One other thing that may be happening is that there may be some corruption in your project or render files.
    Try copying just a section of the project and paste into a clean new project. See how rendering progresses in that new one.

  • Urgent..Extremely Slow Rendering Problem

    So literally all I'm trying to do is add a watermark to an already exsisting video for this website I work for. Everything renders fine when I import the video, but once the picture comes into play, it takes extremley long just to render a 1 and a half minute long video. We're talking like 30 minute rendering. I have no clue what the problem is. The project exports normally. I've tried changing the rendering settings, the compressor, and I've tried inserting the picture before the video. Nothing works.
    I need help ASAP. I need to get these videos out like...yesterday lol. I've never had this problem before and I'm just completley out of ideas. I've tried JPEG, TIFF, and PNG for the picture and nothing works.
    I need answers quickly. Help wll be greatly appretiated. I'm super stressed right now.

    I've tried a .mov and mp4 for the video.
    Here are the sequence settings:

  • Extremely slow rendering. i5, 6gb RAM, CS6 PRO

    Hi guys!
    So I got really tired of insanely long render times. I usually use 1-2 video tracks, no keying, no special effects, commonly use Warp Stabilizer, Cineon Converter and PRO Camp, of course some colour correction (usually RGB curves, but sometimes a three way). Usually it ends up being about 3-4 tracks. On last project it took 2 hours to render a two minute video. Below i'll post info on that.
    And today its taking about 12 hours to render a 40 minute video.( I am frustrated and sad of this(
    My usual composition layout:
    Titles
    adjustment layer
    video 2 (rare)
    video 1
    sound one
    sound two
    sound three (rarely)
    My laptop^
    i5 2n gen 2.5-3.2Ghz dual core (4 logical cores)javascript:;
    6GB Ram 1333 MHz
    GT 525M 1GB (i've enabled CUDA GPU acceleration. works like a charm on all 96 little silicon cylinders.)
    540rpm 640 GB, practically empty (Partition D)
    Use Canon for video recording, so it is UP TO fullHD .mov files. Usually FHD @ 70-100MB/s (canon's standart) Screenshots were taken at the moment of rendering (70% through)
    My export settings are:
    .h264
    FullHD
    29.97FPS/30FPS
    VBR Pass 2
    Target bit rate 8-10 mbs
    max - 15-20
    "Use Max rendering quality + use max bit depth"
    Can someone point out my idiocity? Please let me know what shoud I do to avoid this.
    PS, 8 core MacPro or an 8 core i7 extreeme, are neither an option here(... just sain'
    English is not my native, so sorry for mistakes.
    Thanks in advance!

    Thanks mate!
    I kinda knew all of what you said, but i guess now i am more sure of suckingness of my machine... funny thing is, load goes up to 90% maybe three times during a render and it stays loaded for a short periodof time... i loogged one of my renders back when i had Win7 x64 (ultimate) (same machine) and it showed that neither of devices were loaded more than 90%
    it was something like this:
    CPU <92%
    GPU <95% (exception)
    disk <30%
    memory <50-65%
    I know that with VBR 2 there are 2 passes, thus twice as long in render... but god damn, almost 2 hours for a 2 minute video??? its awful. and all of those procesess take up less than 7% for all of them. Finally, since i got only 6 GB of physical memory, my adobe is able to only use 4gb. so there is nothing bad.. I've never had any issues with such low RAM. If i had an i7, then yes, i'd need about 12-16 gb to get the most, even though, its the, SATA to Hard drive that bottlenecks the stuff. I wish I could get an SSD, but they are hellishly expensive. i got my drive thru sata3, but still, the drive is kinda sad and broken (old) so this is why i must be getting such low speeds... even when i copy info using USB3<-->USB3 device, the speed never goes over 20MBs for downloading and 5MB to uploading to a USB device.
    PS... sucks to wotk an a low end machine.

  • Flash CS3 and CS4 "Test Movie" extremely slow, ridiculous.

    This is a problem that, having read many forums, affects a very large amount of people, though Adobe doesn't care at all. It only affects OS X users.
    When I use Flash CS3, and I make any animation, even the simplest tween, and I preview it with Test Movie, the result I get is an extremely slow playback. Something like half the FPS it should be.
    However, when I export the SWF and preview it in the external Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the Help panel, the problem with Test Movie only happens like 20% of the time. In that case, it only gets solved if I restart or Log Out at least. I have no idea why the Help panel being open solves the problem, this only shows that this is probably a little graphic user interface bug, or something similar, that could be solved very very easily.
    In Flash CS4, there is no Help panel, so there is no solution to the problem.
    It would be nice to be able to press Cmd + Enter to see the movie, and not have to do File > Export > bla bla bla, open Finder, Find the SWF, double click it, wait for the browser to open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix this in CS4...
    So basically if something doesn't work, Adobe's solution is "Don't use it."
    I guess they're right!
    Please, tell me if anyone has this problem or knows anything about it!
    Thanks,
    Mate

    1) Every post I see that you have made recently reflects on problems that are most likely associated with your computer that are causing problems with your software. 1st thing I would look at with your problems (and I do not mean just this one) is a conflict with another program, ei antivirus software, etc. Trying turning off programs one by one, relaunching your CS programs, and see if you can find a culprit.
    2) With that kind of attitude you are only going to receive just as friendly/helpful solutions. Just because SOMEONE ELSE doesn't solve YOUR problem does not mean that THEY are ignorant.

  • Premier Pro CC 2014 Extremely slow in Rendering-No Hardware Utilization

    Hi,
    My name is Avinash and I am working as in-house Media production Specialist in BMC Software.
    Earlier we had MacBook Pro for all post production with adobe CC. we faced so many rendering issues during last year using mac, so we decided to switchover to high End Workstation.
    We procured Dell Precision Tower 7910 with Dual Intel Xeon Processors, 64GB Ram, Dual AMD Firepro W5100 GPU. Still I faced slow rendering, so called Dell Engineer to verify the hardware.
    It was all ok.
    So here I am trying understand where is the bug ?
    I have timeline around 51mins, sony nxcam shoot. added logo and text, monitored a render time which is around 5Hours. my cpu usage 4%, 6GB Ram and GOD knows if its using GPU
    but its very frustrating.
    Kindly Help me sorting out the issue.
    Thank You

    What are you calling ..."Render"?
    One renders a Sequence for preview and smooth playback of added FX etc for editing purposes (only)
    One Exports a Sequence for a Display objective. Transcode
    As a Media Production Specialist..you will be aware of the difference and the devil is in the detail.
    GPU is used in Rendering of FX etc but not in Export.  CPU and Ram to a point is the power house.  Have heard anecdotaly...that anything over 16GB Ram is wasted  though in PPro
    Must say ..seems low usage of CPU though and 5 hours is long for 51 mins.
    Generally I find my system Exports  approximately at real time (sequence time or slightly better,

  • FCP 6.0.1 Running and previewing extremly slow

    Ever since I upgraded to 6.0.1 FCP is running extremly slow.
    In my current project, I brought in a HDV QT.mov that needed to be Chroma Keyed and color adjusted. Previewing the chroma keyed file looks horrible (all jagged) unless I render it. That takes time. Then I added a piece of stock DV footage under that, blurred the background and it played back like crap until I rendered it. More time. And so on.
    I can't make any adjustment and see how it looks without rendering.
    When I was working in 5.1 FCP I was able to add all type of files and zip right through them pretty much. Now I can't seem to get my settings right or something...so as I apply different effects or filters I can never see on the fly how it looks without rendering it first. Then of course...if it's not right...I tweak it again but can't see how that looks until I render it again.
    All my video files resides on a RAID that I created from 2 of my internal drives and it also is my scratch & render disk.
    It's eating my lunch on production time.
    Any suggestions Please.

    You could try setting the render in the sequences you work with to ProRes. Found in that sequence setting's video processing tab.
    But the real fix is to not work in HDV at all. If you have an Intel mac, a capture card like the Kona LHe card will transcode your HDV directly to ProRes... or AJA's Io HD (at the high end of this workflow) will transcode the HDV to ProRes on board the box itself... The Io will take your HDMI signal directly from the camera and transcode it to anything. It starts shipping any day now.
    You're a brave soul attempting chroma keys with HDV... they are nigh on impossible to look good. But ProRes will make the rendering times go way down, and give you more real time playback of effects.
    Jerry

  • How come my ps CS6 runs extremely slow?

    After testing photoshop cs6, seeing how fast it worked on 3D on my pc I bought the web design and premium version. Time in between was several weeks. To my huge disappointement, the bought version runs extremely slow, mostly on 3D when I want to paint on target texture. Secondly I experiance a bug when I open my file and want to paint on targeted texture....brush shows inaccesible when wanting to paint. I do not mean greyed out, but the moment I hover over my 3d object it shows I cant paint (yes I have my layer selected;-). I have to fix this each time by changing targeted texture to some other and again switching back to the one I actually want to edit. As last thing, my OpenCL is greyed out.....maybe that causes the speed problems.....did not check with trial if it worked so not sure this is the issue=/....
    When it comes to the speed I tried several things and now even reinstalled my whole pc hoping that would solve the problem.....it did not. Both CS6 photoshop 32-and 64-bit run slow on 3D.
    I closed my trendmicro virusscanner to see if that would help....it speeded up only the start-up process but not the 3D. 3D works so slow that I have to wait 10 minutes after each move..just crazy....evenmore as it worked awesome with the trial version.
    Also changed amount of memory assigned to ps by increasing to 80% and even 100%...nothing.
    changed in graphic processors settings advanced into basic...nothing again.
    No idea what to do next besides buying a new computer....I know I do not have a super strong one but as it worked perfectly I just don't get it. My pc runs this system:
    Intel(R) Core (TM) 2CPU
    [email protected] 2.66 Ghz
    Ram 4GB
    Windows 7 Ultimate 64-bit
    GeForce8800GTX
    I have the feeling it is some conflict between an update of windows or graphic driver (I have the newest so my info tells me) and photoshop...any ideas what to do as this is extremely frustrating?
    THANK YOU IN ADVANCE FOR ANY HELP
    In case it helps this is the copied system info from photoshop:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:15, Stepping:6 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 2
    Processor speed: 2660 MHz
    Built-in memory: 4030 MB
    Free memory: 2858 MB
    Memory available to Photoshop: 3432 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce 8800 GTX/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Card Number: 1
    Video Card: NVIDIA GeForce 8800 GTX
    OpenCL Unavailable
    Driver Version: 8.17.12.9573
    Driver Date: 20120209000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1200 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce 8800 GTX
    Video Card Memory: 768 MB
    Video Rect Texture Size: 8192
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 488,3G, 448,7G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Maximum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mean 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Median 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Range 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE
    12-08-2012
    Installed newer graphic driver as its seemed Microsoft update had an older one installed on my pc. This one is straight from Nvidia site with 3D support. Nevertheless ps runs slow and especially 3D. 32 Bit runs tiny bit faster than 64-bit. Now my photoshop even crashes with 3D: 32 bit holds out longer then 64...last one freezes almost immediately and I can close it through task manager. After installing newer driver at least the 64 bit shows OPenCL , where 32-bit not....maybe thats normal...
    I hope anyone can help me as I even checked the system requirements on adobe and mine should be more than fine.
    Message was edited by: Nethergirl

    Well, it must be a system-specific bug of some sort that's been introduced, because I was able to create a 4200 x 3500 image made by mapping an image of similar size to a cylinder, and the cylinder would move/rotate in real time.  Of course, I have a completely different video card and system than you do, but I'm just verifying that it's not broken everywhere.
    Rendering isn't hugely fast, but that's not unexpected with a larger image.
    Maybe being more specific would help.  Is your mesh complex?
    Is it something you'd be willing to share online or describe how to create?  I would be happy to try to match what you're doing more thoroughly to see whether I can reproduce the slowdowns.
    Beyond that, I'm not sure what to suggest...  You don't have a lot of RAM to be working on 15 megapixel images, but as you say the thing to concentrate on is that you're seeing quite different performance from the Ps CS6 beta version.
    -Noel

  • SSRS 2008 R2 is extremely slow. The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes. I have read this is a bug in SSRS 2008 R2. We installed the most recent patches and service packs.

    SSRS 2008 R2 is extremely slow.  The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes.  I have read this is a bug in SSRS 2008 R2.  We installed the most recent patches and
    service packs.  Nothing we've done so far has fixed it and I see that I'm not the only person with this problem.  However I don't see any answers either.

    Hi Kim Sharp,
    According to your description that when you view the report it is extremely slow in SSRS 2008 R2 but it is very fast when execute the query in dataset designer, right?
    I have tested on my local environment and can‘t reproduce the issue. Obviously, it is the performance issue, rendering performance can be affected by a combination of factors that include hardware, number of concurrent users accessing reports, the amount
    of data in a report, design of the report, and output format. If you have parameters in your report which contains many values in the list, the bad performance as you mentioned is an known issue on 2008 R2 and already have the hotfix:
    http://support.microsoft.com/kb/2276203
    Any issue after applying the update, I recommend you that submit a feedback at https://connect.microsoft.com/SQLServer/ 
    If you don’t have, you can do some action to improve the performance when designing the report. Because how you create and update reports affects how fast the report renders.
    Actually, the Report Server ExecutionLog2  view contains reports performance data. You could make use of below query to see where the report processing time is being spent:
    After you determine whether the delay time is in data retrieval, report processing, or report rendering:
    use ReportServer
    SELECT TOP 10 ReportPath,parameters,
    TimeDataRetrieval + TimeProcessing + TimeRendering as [total time],
    TimeDataRetrieval, TimeProcessing, TimeRendering,
    ByteCount, [RowCount],Source, AdditionalInfo
    FROM ExecutionLog2
    ORDER BY Timestart DESC
    Use below methods to help troubleshoot issues according to the above query result :
    Troubleshooting Reports: Report Performance
    Besides this, you could also follow these articles for more information about this issue:
    Report Server Catalog Best Practices
    Performance, Snapshots, Caching (Reporting Services)
    Similar thread for your reference:
    SSRS slow
    Any problem, please feel free to ask
    Regards
    Vicky Liu

  • Photoshop cs6 running extremely slow on opening a file. have reset prefs and set type to none.

    Photoshop cs6 running extremely slow on opening a file. have reset prefs and set type to none. have to force quit  most of the time.

    I'm experiencing the same trouble.  Photoshop takes 5 minutes to open then runs fine.
    I recently bought a new iMac AND updated to Adobe Master Collection CS6.  My concern is that PhotoShop now takes 5 minutes to open. The Photoshop desktop pops up immediately, but the moment you click on a tool or try to open a file (no matter the size) results in the spinning wheel for five minutes before you can do anything.  After that, Photoshop appears to work fine.
    What I’ve done:
    Ran Adobe updater
    Reset Photoshop Preferences
    Validated all fonts and removed any trouble fonts
    Ran the font test
    Set font preview size to none
    Cleared the Photoshop type cache and system cache
    Disabled Symantec Endpoint
    Tried running with the GPU processor on/off and in basic
    Tried opening Photoshop with optional third party plug-ins turned off (still took five minutes but this time I didn’t even get the Photoshop desktop view until AFTER the five minutes)
    I’m wondering since I migrated the files form my old computer (and older versions of Master Collection) did something get corrupted.
    System Info
    Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64
    Operating System: Mac OS 10.9.4
    System architecture: Intel CPU Family:6, Model:60, Stepping:3 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3500 MHz
    Built-in memory: 32768 MB
    Free memory: 21330 MB
    Memory available to Photoshop: 30850 MB
    Memory used by Photoshop: 70 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 (Apr 25 2014 22:04:25)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 2047 MB
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GTX 780M OpenGL Engine
    Display: 1
    Main Display
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=1440, right=2560
    Video Renderer ID: 16918308
    Video Card Memory: 2048 MB
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 931.0G, 713.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
    adbeape.framework adbeape 3.3.8.19346   66.1025012
    AdbeScriptUIFlex.framework AdbeScriptUIFlex 6.2.29.18602 66.490082
    adobe_caps.framework adobe_caps 6.0.29.0   1.276181
    AdobeACE.framework AdobeACE 2.19.18.20743   66.507768
    AdobeAGM.framework AdobeAGM 4.26.20.20743   66.507768
    AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
    AdobeAXEDOMCore.framework AdobeAXEDOMCore 3.7.101.18636 66.26830
    AdobeBIB.framework AdobeBIB 1.2.02.20743   66.507768
    AdobeBIBUtils.framework AdobeBIBUtils 1.1.01   66.507768
    AdobeCoolType.framework AdobeCoolType 5.10.33.20743 66.507768
    AdobeCrashReporter.framework AdobeCrashReporter 6.0.20120720  
    AdobeExtendScript.framework AdobeExtendScript 4.2.12.18602 66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
    AdobeLinguistic.framework      17206  
    AdobeMPS.framework AdobeMPS 5.8.0.19463   66.495174
    AdobeOwl.framework AdobeOwl   5.0.4   79.517869
    AdobePDFL.framework AdobePDFL   10.0.1.18562   66.419471
    AdobePDFSettings.framework AdobePDFSettings 1.4  
    AdobePIP.framework AdobePIP 7.0.0.1686  
    AdobeScCore.framework AdobeScCore 4.2.12.18602   66.490082
    AdobeUpdater.framework AdobeUpdater 6.0.0.1452   "52.338651"
    AdobeXMP.framework AdobeXMPCore 66.145661   66.145661
    AdobeXMPFiles.framework AdobeXMPFiles 66.145661   66.145661
    AdobeXMPScript.framework AdobeXMPScript 66.145661   66.145661
    ahclient.framework ahclient 1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
    aif_ocl.framework AdobeAIF   3.0.00   62.490293
    aif_ogl.framework AdobeAIF   3.0.00   62.490293
    AlignmentLib.framework xcode   1.0.0.1  
    amtlib.framework amtlib   6.0.0.75  
    boost_date_time.framework boost_date_time 6.0.0.0  
    boost_signals.framework boost_signals 6.0.0.0  
    boost_system.framework boost_system 6.0.0.0  
    boost_threads.framework boost_threads 6.0.0.0  
    Cg.framework   NVIDIA Cg     
    CIT.framework CIT   2.1.0.20577   146758
    data_flow.framework AdobeAIF   3.0.00   62.490293
    dvaaudiodevice.framework dvaaudiodevice 6.0.0.0  
    dvacore.framework dvacore   6.0.0.0  
    dvamarshal.framework dvamarshal 6.0.0.0  
    dvamediatypes.framework dvamediatypes 6.0.0.0  
    dvaplayer.framework dvaplayer 6.0.0.0  
    dvatransport.framework dvatransport 6.0.0.0  
    dvaunittesting.framework dvaunittesting 6.0.0.0  
    dynamiclink.framework dynamiclink 6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
    filter_graph.framework AdobeAIF   3.0.00   62.490293
    hydra_filters.framework AdobeAIF   3.0.00   62.490293
    ICUConverter.framework ICUConverter 3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61 "gtlib_3.0" "." "16615"
    image_compiler.framework AdobeAIF   3.0.00   62.490293
    image_flow.framework AdobeAIF   3.0.00   62.490293
    image_runtime.framework AdobeAIF   3.0.00   62.490293
    LogSession.framework LogSession 2.1.2.1681  
    mediacoreif.framework mediacoreif 6.0.0.0  
    PlugPlug.framework PlugPlug 3.0.0.383  
    UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24 "6.0.0.24"
    wrservices.framework        
    Required plug-ins:
       3D Studio 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.4 (199), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.4 (199), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0.6 x001  ©2002-2013 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0.6 x001 ©2003-2013 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0.6 x001  ©1997-2013 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0.6 x001  ©2001-2013 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
    Measurement Core 13.0.6 x001 ©1993-2013 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
    Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Multiprocessor Support 13.0.6 x001 ©1990-2013 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PCX.plugin”
    Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Photoshop 3D Engine 13.0.6 x001 ©2006-2013 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0.6 x001 ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
    Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2013 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Summation 13.0.6 x001 ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Wavefront|OBJ 13.0.6 x001 ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins:
       Alien Skin Blow Up 3 Blow Up 3 3.0.0.672 20633 Copyright © 2011 Alien Skin Software, LLC - from the file “Alien Skin Blow Up 3 Automation.8li.plugin”
       Analog Efex Pro 1.0.11.180, Copyright ©2000-2014, Google - from the file “Analog Efex Pro.plugin”
       Analog Efex Pro 2 2.0.4.288, Copyright ©2000-2014, Google - from the file “Analog Efex Pro 2.plugin”
    BackgroundFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “BackgroundFilter.plugin”
       Blow Up Blow Up 3 3.0.0.672 20633 Copyright © 2011 Alien Skin Software, LLC - from the file “Alien Skin Blow Up 3 Photoshop.8bf.plugin”
       Color Efex Pro 4 4.3.16.288, Copyright ©2000-2014, Google - from the file “Color Efex Pro 4.plugin”
       Dfine 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “Dfine2.plugin”
    FineStructuresFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “FineStructuresFilter.plugin”
       HDR Efex Pro 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “HDR Efex Pro 2.plugin”
       Hidden Topaz Labs Denoise - from the file “TopazRemaskAutomate.plugin”
    HotPixelsFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “HotPixelsFilter.plugin”
       Merge to HDR Efex Pro 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “HDR Efex Pro 2 Automation.plugin”
       Nik Collection Selective Tool 2.1.21.288, Copyright ©2000-2014, Google - from the file “SelectivePalette.plugin”
    ShadowsFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “ShadowsFilter.plugin”
       Sharpener Pro 3: (1) RAW Presharpener 3.1.16.288, Copyright ©2000-2014, Google - from the file “SHP3RPS.plugin”
    Sharpener Pro 3: (2) Output Sharpener 3.1.16.288, Copyright ©2000-2014, Google - from the file “SHP3OS.plugin”
       Silver Efex Pro 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “Silver Efex Pro 2.plugin”
    SkinFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “SkinFilter.plugin”
    SkyFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “SkyFilter.plugin”
       StrongNoiseFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “StrongNoiseFilter.plugin”
       Topaz Adjust 5 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_adjust5.plugin”
       Topaz B&W Effects 2 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_BW2_Effects.plugin”
       Topaz Clean 3 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_clean3.plugin”
       Topaz DeJpeg 4 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_dejpeg4.plugin”
       Topaz DeNoise 5 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_denoise5.plugin”
       Topaz Detail 3 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_detail3.plugin”
       Topaz InFocus CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_infocus.plugin”
       Topaz Lens Effects CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_Lens_Effects.plugin”
       Topaz ReMask 3 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_remask3.plugin”
       Topaz Simplify 4 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_simplify4.plugin”
       Viveza 2 2.1.16.288, Copyright ©2000-2014, Google - from the file “Viveza2.plugin”
    WhiteWindowWorkaround 1.0.5, Copyright 2013-2014 - from the file “WhiteWindowWorkaround.plugin”
    Plug-ins that failed to load: NONE
    Flash:
       Gallery Wrapper
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

  • Extremely slow performance with Radeon HD 7870

    Hi,
    I am using a number of Adobe programs on my new Windows 8 64 bit system, with 16 gigs of ram, an Intel Core i5 2.67ghz, and AMD Radeon HD 7870 2 gig. All the programs (including After Effects and Illustrator) work very well with the exception of Photoshop CS6 64 bit, which has extremely slow performance with Use Graphics Processor enabled in my preferences (which Photoshop selects by default). If I turn off Use Graphics Processor, the slow performance vanishes. If I change Drawing Mode to Basic, there might be a slightly detectable improvement over Normal and Advanced, but it's still horribly slow. The refresh rate seems to be just a few frames per second. Everything is slow: brushes, zooming, panning, everything.
    I've tried changing the settings I've seen suggested elsewhere: I switched Cache levels to 2, history states to 10, and tile size to 128k. No effect. Photoshop is currently at the default of using 60% of available ram. Efficiency has remained at 100% throughout all my tests. Also, this slow performance has affected me from the moment I installed Photoshop; it didn't crop up after previous good performance. The problem exists regardless of the size or number of documents I have open. Performance is still terrible even when I create a 500 x 500 pixel blank new canvas and try a simple task like drawing with the brush.
    Photoshop is fully up to date, and so are my graphics drivers (Catalyst version 13.1). Any help would be greatly appreciated; at the moment performance is so bad in Photoshop that it's unusable with graphics acceleration enabled. Thanks in advance for replying.
    Photoshop System Info:
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2665 MHz
    Built-in memory: 16379 MB
    Free memory: 13443 MB
    Memory available to Photoshop: 14697 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 2
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1084.4)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7800 Series
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 2
    Video Card: AMD Radeon HD 7800 Series
    Driver Version:
    Driver Date:
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7800 Series
    Video Card Memory: 2048 MB
    Video Card Number: 1
    Video Card: Microsoft Basic Render Driver
    Driver Version: 9.12.0.0
    Driver Date: 20121219000000.000000-000
    Video Card Driver:
    Video Mode:
    Video Card Caption: Microsoft Basic Render Driver
    Video Card Memory: 0 MB
    Serial number: 90970078453021833509
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\RAFFAE~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 931.5G, 534.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/09/10-12:31:21   5.0.4   79.517869
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1686  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.0.20577   2.1.0.20577
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1681  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
    Required plug-ins:
       3D Studio 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       Angled Strokes 13.0
       Average 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.3
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Collada 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Embed Watermark 4.0
       Entropy 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Extrude 13.0
       FastCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Maximum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mean 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Measurement Core 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Median 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mezzotint 13.0
       Minimum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       MMXCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Picture Package Filter 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Pinch 13.0
       Pixar 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Range 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.1.2
       Shear 13.0
       Skewness 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       STL 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Sumi-e 13.0
       Summation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Variations 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       WIA Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Wind 13.0
       Wireless Bitmap 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       DAZ Studio 3D Bridge 12.0
       DazUpdateScene 12.0
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Great news!
    I followed your suggestion, Noel, and uninstalled my drivers with the Catalyst Uninstall Utility (which I hadn't used before), rebooted, reinstalled Catalyst 13.2 Beta 7, rebooted, deleted the PS Prefs, started PS, and now the performance is radically improved!
    It baffles me why I would need to do a clean driver uninstall in a new system environment that has only ever had this video card, and is only a few months old, but that action seems to be what's improved the situation. Note that because I deleted the PS preferences, the good performance now occurs with the default Use Graphics Processor enabled, and Drawing Mode set to Advanced (with every feature in the Advanced dialog checked except 30bit display).
    Having no reference point, I can't tell for sure if performance is as good as it theoretically ought to be for my system specs, but using the standard 13px brush is only slightly laggy behind the cursor, even if I become reckless and squiggle on the canvas violently. It wasn't just sluggish response before: Photoshop seemed to be in pain trying to draw the line segments as it laboured to catch up to the cursor. That is pretty much gone now.
    Much more tellingly, zooming and panning the canvas is like it ought to be, responsive and clean, more or less like it was for me in CS4 with my old Nvidia 9600GT. The poor performance with zooming and panning was the most worrying aspect of the issue. It's a great relief to see these working more properly now.
    I have to confess I'm a little embarrassed to have drug you through all this hassle only to discover that something as rudimentary as properly cleaning out the drivers would be the apparent solution. I never would have imagined that doing that, with such a new and stable system, would make any difference, since I don't have a legacy of older drivers dotting my hard drive. In any event, I'm really grateful that you guys took the time to try to help me.
    In the interest of completeness, here's the relevant portion of my system info after doing the reinstall steps I mentioned above:
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2665 MHz
    Built-in memory: 16379 MB
    Free memory: 13680 MB
    Memory available to Photoshop: 14695 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 3.0
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7800 Series
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 2
    Video Card: AMD Radeon HD 7800 Series
    Driver Version:
    Driver Date:
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7800 Series
    Video Card Memory: 2048 MB
    Video Card Number: 1
    Video Card: Microsoft Basic Render Driver
    Driver Version: 12.100.17.0
    Driver Date: 20130226000000.000000-000
    Video Card Driver:
    Video Mode:
    Video Card Caption: Microsoft Basic Render Driver
    Video Card Memory: 0 MB
    As you can see, the Microsoft Basic Render Driver still appears as a Video Card in the list. This presumably has something to do with Windows 8, and I really don't know if its presence here is still a sign that my card is not being used to its optimal capability. I have a hunch that the slight lag that I am still experiencing with the brush when Use Graphics Processor is on -- totally absent with the acceleration turned off -- implies that Photoshop is still unable to take maximum advantage of my card. I would assume that the brush tool should be more responsive with acceleration on than off, in a rig without any issues, but that's just assumption on my part. If you turn off Use Graphics Processor on your systems, is the brush tool more or less responsive?
    But again, panning the canvas with the hand tool is now extremely responsive, without any screen tearing or visible lag, and that's a massive improvement over the total meltdown of performance I was suffering from before.
    Thanks again very much for your help. I'm grateful to all of you who took the time to chime in.

  • Very strange : Export from Organizer extremely slow

    Today I came something strange while "exporting Files as New File" from the Organizer. I decided to report it, because the observation may point to a potential improvement.
    In the Organizer (PSE V7), I went through File--> "Export as New File..." to export approximately 350 Jpeg Photo-Files (around 3 MBeach) to a USB Stick. I was knowing that writing to my USB stick was slow. But the Export Process was much slower than expected. It was ***extremely*** slow and after more than 1/2 hour, only 16% of the Photos had been exported. Also my PC (Windows XP Professional with SP3) was extremely slow in responding.
    I therefore diced to kill the PSE Organizer.
    Then I decided to 1) export the 350 Jpeg Files first to a Folder on my ***internal*** disk and then 2) to copy with Windows Explorer that Folder to my USB Stick. This was much, much more rapid.
    From this experience, I get the impression that the "Export as new File" logic of PSE is doing something very vstrange and very inefficient ...something that could get probably improved.

    I may not be having a snow leopard problem at all.
    Going back to an old project in 1080i of an 8 minute length. the estimated time to render is about 50 minutes it says @20% of the way thru. Thats about 6x real time.
    Maybe thats what I should expect. I was hoping for a significant speed increase in rendering times with the new OS. What is teh factor averaging for other people ?
    I am rendering down to 720p multi pass 2320 kbit rate .MP4 in h.264
    Maybe I have a settings problem in project properties in my other project.
    I also got inspired and moved the render folders to a separate disk from the source files and put the caches on a 3rd drive. my I/O readings now are at 60 reads/sec.
    Thanks for helping me work this issue out with you guys. Will keep you posted.

  • Update to Mavericks 10.9.5 made my MacBook Pro extremely slow!

    Update to 10.9.5 made my MacBook Pro (2011) extremely slow. I upgraded on the 30th Sep and since then it's getting worse and worse. Today was totally impossible to work with it.
    It freezes in Safari or iTunes, several Apps crash, Numbers stops responding all the time, loses wifi, loses connectivity with printer/scanner, overheats, puts memory into pressure and drains battery. I have run Disk Utility, repaired permissions but nothing works. I have already backed up my stuff to an external drive.
    How do I fix all this?? I'm getting desperate. Thanks.

    Hi Linc,
    Thanks for your input!
    In fact, the major problem happened around 04:00pm yesterday, the 14th. It has been getting worse since the update on the 30th.
    I tried as much as possible to be selective but in 2 hrs a lot happened. Most of code repetitions were deleted.
    10/14/14 16:13:57.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:13:57.678 com.apple.launchd[1]: (com.apple.WebKit.Networking.2982A5E8-7D75-43ED-B831-EB1F937F72D1[3103]) Exited with code: 1
    10/14/14 16:14:15.058 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.067 com.apple.launchd.peruser.501[188]: (com.apple.Finder[3064]) Exited: Terminated: 15
    10/14/14 16:14:15.079 com.apple.launchd[1]: (com.apple.MailServiceAgent[483]) Exited: Killed: 9
    10/14/14 16:14:15.079 com.apple.launchd.peruser.501[188]: (com.apple.AirPlayUIAgent[502]) Exited: Killed: 9
    10/14/14 16:14:15.082 com.apple.launchd.peruser.501[188]: (com.apple.rcd[1581]) Exited: Killed: 9
    10/14/14 16:14:15.082 com.apple.launchd.peruser.501[188]: (com.apple.EscrowSecurityAlert[390]) Exited: Killed: 9
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.936 com.apple.launchd.peruser.501[188]: (com.apple.noticeboard.agent[2045]) Exited: Killed: 9
    10/14/14 16:14:15.938 com.apple.launchd[1]: (com.apple.ShareKitHelper[263]) Exited: Killed: 9
    10/14/14 16:14:15.939 com.apple.launchd[1]: (com.apple.internetaccounts[271]) Exited: Killed: 9
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.950 com.apple.launchd.peruser.501[188]: (com.apple.iTunesHelper.35760[259]) Exited with code: 1
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.451 loginwindow[42]: ERROR | -[ApplicationManager(AppleEventHandling) sendQuitEventToApp:withDelay:] | sendQuitEventToApp (XBMCHelper): AESendMessage returned error -1712
    10/14/14 16:14:16.454 com.apple.launchd.peruser.501[188]: ([0x0-0x21021].com.apple.AppleSpell[344]) Exited: Killed: 9
    10/14/14 16:14:16.505 XBMCHelper[248]: XBMCHelper 0.7 exiting...
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:18.601 sessionlogoutd[3137]: sessionlogoutd Launched
    10/14/14 16:14:18.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:18.763 loginwindow[42]: ERROR | -[Application setAppContext:] | Unable to get PID for context [0,1110287]
    10/14/14 16:14:18.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:18.834 sessionlogoutd[3137]: DEAD_PROCESS: 42 console
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.349 loginwindow[42]: ERROR | -[Application hardKill:] | Application hardKill returned -600
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.429 airportd[65]: _doAutoJoin: Already associated to “MEO-594CCD”. Bailing on auto-join.
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.455 loginwindow[42]: ERROR | -[Application hardKill:] | Application hardKill returned -600
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.491 fseventsd[50]: disk logger: failed to open output file /Volumes/My Passport/.fseventsd/00000000036d7068 (Resource busy). mount point /Volumes/My Passport/.fseventsd
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.497 fseventsd[50]: disk logger: failed to open output file /Volumes/My Passport/.fseventsd/00000000036d7068 (Resource busy). mount point /Volumes/My Passport/.fseventsd
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.518 shutdown[3138]: reboot by _securityagent:
    10/14/14 16:14:21.000 kernel[0]: Kext loading now disabled.
    10/14/14 16:14:21.000 kernel[0]: Kext unloading now disabled.
    10/14/14 16:14:21.000 kernel[0]: Kext autounloading now disabled.
    10/14/14 16:14:21.518 shutdown[3138]: SHUTDOWN_TIME: 1413299661 518084
    10/14/14 16:14:21.000 kernel[0]: Kernel requests now disabled.
    10/14/14 16:14:21.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.000 kernel[0]: nspace-handler-set-snapshot-time: 0
    10/14/14 16:14:21.000 kernel[0]: nspace-handler-set-snapshot-time: 0
    10/14/14 16:14:21.603 mtmfs[2153]: filesystem unmount attempted from stopFS
    10/14/14 16:14:21.603 com.apple.mtmd[2152]: Set snapshot time: reset (current time: 2014-10-14 16:14:21 +0100)
    10/14/14 16:14:21.604 com.apple.mtmd[2152]: Set snapshot time: reset (current time: 2014-10-14 16:14:21 +0100)
    10/14/14 16:15:11.000 bootlog[0]: BOOT_TIME 1413299711 0
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 kernel[0]: Longterm timer threshold: 1000 ms
    10/14/14 16:15:51.000 kernel[0]: PMAP: PCID enabled
    10/14/14 16:15:51.000 kernel[0]: Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    10/14/14 16:15:51.000 kernel[0]: vm_page_bootstrap: 857213 free pages and 183171 wired pages
    10/14/14 16:15:51.000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    10/14/14 16:15:51.000 kernel[0]: zone leak detection enabled
    10/14/14 16:15:51.000 kernel[0]: "vm_compressor_mode" is 4
    10/14/14 16:15:51.000 kernel[0]: standard timeslicing quantum is 10000 us
    10/14/14 16:15:51.000 kernel[0]: standard background quantum is 2500 us
    10/14/14 16:15:51.000 kernel[0]: mig_table_max_displ = 74
    10/14/14 16:15:51.000 kernel[0]: TSC Deadline Timer supported and enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    10/14/14 16:15:51.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    10/14/14 16:15:51.000 kernel[0]: calling mpo_policy_init for Sandbox
    10/14/14 16:15:51.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    10/14/14 16:15:51.000 kernel[0]: calling mpo_policy_init for Quarantine
    10/14/14 16:15:51.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    10/14/14 16:15:51.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    10/14/14 16:15:51.000 kernel[0]: The Regents of the University of California. All rights reserved.
    10/14/14 16:15:51.000 kernel[0]: MAC Framework successfully initialized
    10/14/14 16:15:51.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    10/14/14 16:15:51.000 kernel[0]: AppleKeyStore starting (BUILT: Aug 17 2014 20:21:39)
    10/14/14 16:15:51.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    10/14/14 16:15:51.000 kernel[0]: ACPI: sleep states S3 S4 S5
    10/14/14 16:15:51.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    10/14/14 16:15:51.000 kernel[0]: AppleIntelCPUPowerManagement: (built 20:17:40 Aug 17 2014) initialization complete
    10/14/14 16:15:51.000 kernel[0]: pci (build 20:04:33 Aug 17 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    10/14/14 16:15:51.000 kernel[0]: [ PCI configuration begin ]
    10/14/14 16:15:51.000 kernel[0]: console relocated to 0xf80000000
    10/14/14 16:15:51.000 kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    10/14/14 16:15:51.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 3c0754fffeaba2c4; max speed s800.
    10/14/14 16:15:51.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    10/14/14 16:15:51.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    10/14/14 16:15:51.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    10/14/14 16:15:51.000 kernel[0]: rooting via boot-uuid from /chosen: DE393F17-8716-3157-869F-9A061232D651
    10/14/14 16:15:51.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    10/14/14 16:15:51.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    10/14/14 16:15:51.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD HTS547575A9E384 Media/IOGUIDPartitionScheme/Macintosh HD@2
    10/14/14 16:15:51.000 kernel[0]: BSD root: disk0s2, major 1, minor 3
    10/14/14 16:15:51.000 kernel[0]: BTCOEXIST off
    10/14/14 16:15:51.000 kernel[0]: BRCM tunables:
    10/14/14 16:15:51.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    10/14/14 16:15:51.000 kernel[0]: USBMSC Identifier (non-unique): 57583331453733434C454434 0x1058 0x810 0x1042, 2
    10/14/14 16:15:51.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    10/14/14 16:15:51.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    10/14/14 16:15:51.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: Waiting for DSMOS...
    10/14/14 16:15:51.000 kernel[0]: VM Swap Subsystem is ON
    10/14/14 16:15:13.584 com.apple.launchd[1]: *** launchd[1] has started up. ***
    10/14/14 16:15:13.584 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    10/14/14 16:15:36.707 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[69]) Exited with code: 2
    10/14/14 16:15:36.707 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:46.708 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[71]) Exited with code: 2
    10/14/14 16:15:46.708 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:36.705 com.apple.SecurityServer[15]: Session 100000 created
    10/14/14 16:15:46.862 hidd[51]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    10/14/14 16:15:51.639 hidd[51]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    10/14/14 16:15:51.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/14/14 16:15:51.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    10/14/14 16:15:53.233 com.apple.launchd[1]: (PenCommService[70]) getpwnam("_pencomm") failed
    10/14/14 16:15:53.234 com.apple.launchd[1]: (PenCommService[70]) Exited with code: 3
    10/14/14 16:15:53.238 com.apple.launchd[1]: (PenCommService[82]) getpwnam("_pencomm") failed
    10/14/14 16:15:53.238 com.apple.launchd[1]: (PenCommService[82]) Exited with code: 3
    10/14/14 16:15:53.238 com.apple.launchd[1]: (PenCommService) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:53.239 com.apple.usbmuxd[24]: usbmuxd-344 on Jul 29 2014 at 13:52:57, running 64 bit
    10/14/14 16:15:54.564 kdc[48]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    10/14/14 16:15:54.566 com.apple.launchd[1]: (com.apple.Kerberos.kdc[48]) Exited with code: 1
    10/14/14 16:15:54.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    10/14/14 16:15:54.579 kdc[87]: label: default
    10/14/14 16:15:54.579 kdc[87]: dbname: od:/Local/Default
    10/14/14 16:15:54.579 kdc[87]: mkey_file: /var/db/krb5kdc/m-key
    10/14/14 16:15:54.579 kdc[87]: acl_file: /var/db/krb5kdc/kadmind.acl
    10/14/14 16:15:55.000 kernel[0]: IOBluetoothUSBDFU::probe
    10/14/14 16:15:55.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    10/14/14 16:15:55.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6000 ****
    10/14/14 16:15:55.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6000 ****
    10/14/14 16:15:55.000 kernel[0]: init
    10/14/14 16:15:55.000 kernel[0]: probe
    10/14/14 16:15:55.000 kernel[0]: start
    10/14/14 16:15:55.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6000
    10/14/14 16:15:55.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    10/14/14 16:15:55.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    10/14/14 16:15:55.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: Previous Shutdown Cause: 5
    10/14/14 16:15:55.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    10/14/14 16:15:55.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    10/14/14 16:15:55.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x7f80 -- 0x9800 -- 0x6000 ****
    10/14/14 16:15:55.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    10/14/14 16:15:55.000 kernel[0]: DSMOS has arrived
    10/14/14 16:15:56.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.710 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[92]) Exited with code: 2
    10/14/14 16:15:56.710 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.718 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:58.069 configd[17]: setting hostname to "Anabelas-MacBook-Pro.local"
    10/14/14 16:15:58.076 configd[17]: network changed.
    10/14/14 16:15:58.931 mds[40]: (Normal) FMW: FMW 0 0
    10/14/14 16:15:59.079 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:15:59.203 com.apple.SecurityServer[15]: Entering service
    10/14/14 16:15:59.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:59.214 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:59.254 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:15:59.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:59.436 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:59.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:59.568 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:59.572 awacsd[64]: Starting awacsd connectivity_executables-97.1 (Jul 27 2014 17:02:42)
    10/14/14 16:15:59.956 digest-service[72]: label: default
    10/14/14 16:15:59.957 digest-service[72]: dbname: od:/Local/Default
    10/14/14 16:15:59.957 digest-service[72]: mkey_file: /var/db/krb5kdc/m-key
    10/14/14 16:15:59.957 digest-service[72]: acl_file: /var/db/krb5kdc/kadmind.acl
    10/14/14 16:15:59.963 digest-service[72]: digest-request: uid=0
    10/14/14 16:15:59.964 awacsd[64]: InnerStore CopyAllZones: no info in Dynamic Store
    10/14/14 16:15:59.965 loginwindow[44]: Login Window Application Started
    10/14/14 16:16:00.084 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    10/14/14 16:16:00.104 mDNSResponder[41]: mDNSResponder mDNSResponder-522.92.1 (Jul 27 2014 17:31:49) starting OSXVers 13
    10/14/14 16:16:00.121 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:16:00.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:16:00.123 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:16:00.142 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    10/14/14 16:16:00.150 digest-service[72]: digest-request: netr probe 0
    10/14/14 16:16:00.151 digest-service[72]: digest-request: init request
    10/14/14 16:16:00.154 systemkeychain[100]: done file: /var/run/systemkeychaincheck.done
    10/14/14 16:16:00.221 digest-service[72]: digest-request: init return domain: BUILTIN server: ANABELAS-MACBOOK-PRO indomain was: <NULL>
    10/14/14 16:16:00.233 configd[17]: network changed: DNS*
    10/14/14 16:16:00.236 configd[17]: network changed: DNS*
    10/14/14 16:16:00.303 mDNSResponder[41]: D2D_IPC: Loaded
    10/14/14 16:16:00.303 mDNSResponder[41]: D2DInitialize succeeded
    10/14/14 16:16:00.313 mDNSResponder[41]:   4: Listening for incoming Unix Domain Socket client requests
    10/14/14 16:16:00.314 mDNSResponder[41]: Adding registration domain 184018389.members.btmm.icloud.com.
    10/14/14 16:16:00.454 networkd[125]: networkd.125 built Aug 24 2013 22:08:46
    10/14/14 16:16:00.000 kernel[0]: createVirtIf(): ifRole = 1
    10/14/14 16:16:00.000 kernel[0]: in func createVirtualInterface ifRole = 1
    10/14/14 16:16:00.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    10/14/14 16:16:00.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    10/14/14 16:16:00.000 kernel[0]: Created virtif 0xffffff802c8c3800 p2p0
    10/14/14 16:16:00.502 airportd[68]: airportdProcessDLILEvent: en1 attached (up)
    10/14/14 16:16:00.512 kdc[87]: KDC started
    10/14/14 16:16:00.901 apsd[66]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/14/14 16:16:00.902 com.apple.InternetSharing[49]: *** no interface for service
    10/14/14 16:16:00.917 WindowServer[121]: Server is starting up
    10/14/14 16:16:00.930 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:16:00.978 awacsd[64]: Configuring lazy AWACS client: 184018389.p02.members.btmm.icloud.com.
    10/14/14 16:16:00.979 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA3006760 Anabelas-MacBook-Pro.local. (Addr) that's already in the list
    10/14/14 16:16:00.979 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA3006BF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    10/14/14 16:16:00.980 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA3008360 Anabelas-MacBook-Pro.local. (AAAA) that's already in the list
    10/14/14 16:16:00.980 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA30087F0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    10/14/14 16:16:01.453 awacsd[64]: KV HTTP 0
    10/14/14 16:16:01.470 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 6 seconds
    10/14/14 16:16:01.470 com.apple.launchd[1]: (PenCommService) Throttling respawn: Will start in 2 seconds
    10/14/14 16:16:01.477 UserEventAgent[11]: assertion failed: 13F34: com.apple.telemetry + 17682 [AE0C3032-1747-317E-9871-E26B5B6B0120]: 0xffffffffe0000001
    10/14/14 16:16:01.562 locationd[46]: NBB-Could not get UDID for stable refill timing, falling back on random
    10/14/14 16:16:01.664 sandboxd[129]: ([68]) airportd(68) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.C8BD24C7-7A56-5 907-A309-FBC2A4802EC1.plist
    10/14/14 16:16:01.000 kernel[0]: en1: 802.11d country code set to 'PT'.
    10/14/14 16:16:01.000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    10/14/14 16:16:01.000 kernel[0]: fGPUIdleIntervalMS = 0
    10/14/14 16:16:01.000 kernel[0]: en5: promiscuous mode enable succeeded
    10/14/14 16:16:01.905 com.apple.InternetSharing[49]: *** no interface for service
    10/14/14 16:16:02.000 kernel[0]: MacAuthEvent en1   Auth result for: 58:98:35:59:4c:cd  MAC AUTH succeeded
    10/14/14 16:16:02.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    10/14/14 16:16:02.000 kernel[0]: AirPort: Link Up on en1
    10/14/14 16:16:02.000 kernel[0]: en1: BSSID changed to 58:98:35:59:4c:cd
    10/14/14 16:16:02.000 kernel[0]: AirPort: RSN handshake complete on en1
    10/14/14 16:16:02.328 WindowServer[121]: Session 256 retained (2 references)
    10/14/14 16:16:02.328 WindowServer[121]: Session 256 released (1 references)
    10/14/14 16:16:02.347 locationd[46]: Location icon should now be in state 'Inactive'
    10/14/14 16:16:02.350 WindowServer[121]: Session 256 retained (2 references)
    10/14/14 16:16:02.529 WindowServer[121]: init_page_flip: page flip mode is on
    10/14/14 16:16:02.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    10/14/14 16:16:03.466 WindowServer[121]: Found 13 modes for display 0x00000000 [13, 0]
    10/14/14 16:16:03.476 com.apple.launchd[1]: (PenCommService[142]) getpwnam("_pencomm") failed
    10/14/14 16:16:03.477 com.apple.launchd[1]: (PenCommService[142]) Job failed to exec(3). Setting up event to tell us when to try again: 3: No such process
    10/14/14 16:16:03.477 com.apple.launchd[1]: (PenCommService[142]) Job failed to exec(3) for weird reason: 3
    10/14/14 16:16:03.482 WindowServer[121]: Found 21 modes for display 0x00000000 [21, 0]
    10/14/14 16:16:03.494 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.504 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.506 WindowServer[121]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    10/14/14 16:16:03.506 WindowServer[121]: mux_initialize: Mode is safe
    10/14/14 16:16:03.508 WindowServer[121]: Found 13 modes for display 0x00000000 [13, 0]
    10/14/14 16:16:03.513 WindowServer[121]: Found 21 modes for display 0x00000000 [21, 0]
    10/14/14 16:16:03.527 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.527 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.565 WindowServer[121]: WSMachineUsesNewStyleMirroring: false
    10/14/14 16:16:03.567 WindowServer[121]: MPServiceForDisplayDevice: Invalid device alias (0)
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x04273140: GL mask 0x1; bounds (0, 0)[1920 x 1080], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc5, S/N 0, Unit 0, Rotation 0
    UUID 0x150089674ff1f763df4753684d4f1602
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x3c0a4e01: GL mask 0x2; bounds (-1920, 0)[1920 x 1080], 21 modes available
    Active, on-line, enabled, Vendor 22f0, Model 2938, S/N 0, Unit 1, Rotation 0
    UUID 0x2b3642fed8b8a5d7fb302084f612feb1
    10/14/14 16:16:03.569 WindowServer[121]: WSSetWindowTransform: Singular matrix
    10/14/14 16:16:03.569 WindowServer[121]: WSSetWindowTransform: Singular matrix
    10/14/14 16:16:03.570 WindowServer[121]: Display 0x04273140: Unit 0: Mode 1920 x 1080, CGSThirtytwoBitColor, Resolution 1, ioModeID 0x8000500b, ioModeDepth 0x0, IOReturn 0x0
    10/14/14 16:16:03.572 WindowServer[121]: Display 0x3c0a4e01: Unit 1: Mode 1920 x 1080, CGSThirtytwoBitColor, Resolution 1, ioModeID 0x80005000, ioModeDepth 0x0, IOReturn 0x0
    10/14/14 16:16:03.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    10/14/14 16:16:03.598 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 4 seconds
    10/14/14 16:16:03.598 WindowServer[121]: hw_mirror_device_if_possible: driver picks 0x3c0a4e01 as primary
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x3c0a4e01: GL mask 0x2; bounds (0, 0)[1920 x 1080], 21 modes available
    Master in mirror set; Main, Active, on-line, enabled, Vendor 22f0, Model 2938, S/N 0, Unit 1, Rotation 0
    UUID 0x2b3642fed8b8a5d7fb302084f612feb1
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x04273140: GL mask 0x1; bounds (0, 0)[1920 x 1080], 13 modes available
    Hardware mirror of 0x3c0a4e01; on-line, enabled, built-in, boot, Vendor 610, Model 9cc5, S/N 0, Unit 0, Rotation 0
    UUID 0x150089674ff1f763df4753684d4f1602
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x003f0040: GL mask 0x10; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x003f003f: GL mask 0x8; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.601 mds[40]: (Normal) Volume: volume:0x7fb4d1022000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x003f003e: GL mask 0x4; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.602 WindowServer[121]: CGXPerformInitialDisplayConfiguration
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x3c0a4e01: Unit 1; Vendor 0x22f0 Model 0x2938 S/N 0 Dimensions 18.74 x 10.55; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x04273140: Unit 0; Vendor 0x610 Model 0x9cc5 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    10/14/14 16:16:03.622 WindowServer[121]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x00004917, unit 0, caps QEX|MIPMAP, vram 451 MB
    10/14/14 16:16:03.622 WindowServer[121]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    10/14/14 16:16:03.622 WindowServer[121]: GLCompositor enabled for tile size [256 x 256]
    10/14/14 16:16:03.622 WindowServer[121]: CGXGLInitMipMap: mip map mode is on
    10/14/14 16:16:03.630 loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/14/14 16:16:03.715 fseventsd[52]: Logging disabled completely for device:1: /Volumes/Recovery HD
    10/14/14 16:16:04.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    10/14/14 16:16:05.572 WindowServer[121]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/14/14 16:16:05.577 WindowServer[121]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/14/14 16:16:05.678 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 2 seconds
    10/14/14 16:16:05.678 mtmfs[38]: mount succeeded for /Volumes/MobileBackups
    10/14/14 16:16:05.681 mds[40]: (Normal) Volume: volume:0x7fb4d1039800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    10/14/14 16:16:05.681 mds[40]: (Normal) Volume: volume:0x7fb4d1039800 ********** Created snapshot backup index
    10/14/14 16:16:05.950 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:05.952 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:05.986 launchctl[153]: com.apple.findmymacmessenger: Already loaded
    10/14/14 16:16:06.006 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.007 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.030 com.apple.SecurityServer[15]: Session 100004 created
    10/14/14 16:16:06.049 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.051 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.064 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.065 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.077 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.079 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.079 loginwindow[44]: Setting the initial value of the magsave brightness level 1
    10/14/14 16:16:06.133 loginwindow[44]: Login Window Started Security Agent
    10/14/14 16:16:06.151 airportd[68]: _doAutoJoin: Already associated to “MEO-594CCD”. Bailing on auto-join.
    10/14/14 16:16:06.196 UserEventAgent[155]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    10/14/14 16:16:06.248 SecurityAgent[161]: This is the first run
    10/14/14 16:16:06.248 SecurityAgent[161]: MacBuddy was run = 0
    10/14/14 16:16:06.270 WindowServer[121]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc51a611b10) - enabling OpenGL
    10/14/14 16:16:06.457 awacsd[64]: KV HTTP 0
    10/14/14 16:16:06.679 parentalcontrolsd[169]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    10/14/14 16:16:06.000 kernel[0]: nspace-handler-set-snapshot-time: 1413299768
    10/14/14 16:16:06.771 com.apple.mtmd[39]: Set snapshot time: 2014-10-14 16:16:08 +0100 (current time: 2014-10-14 16:16:06 +0100)
    10/14/14 16:16:07.680 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[172]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    10/14/14 16:16:07.681 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[172]) Job failed to exec(3) for weird reason: 2
    10/14/14 16:16:07.787 SecurityAgent[161]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0 : LaunchApplicationClient.cp #990 LaunchApplicationWithSpawnViaLaunchD() q=NSOperationQueue Serial Queue
    10/14/14 16:16:07.787 SecurityAgent[161]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0
    10/14/14 16:16:11.173 digest-service[72]: digest-request: uid=0
    10/14/14 16:16:11.173 digest-service[72]: digest-request: init request
    10/14/14 16:16:11.178 digest-service[72]: digest-request: init return domain: ANABELAS-MBP server: ANABELAS-MACBOOK-PRO indomain was: <NULL>
    10/14/14 16:16:11.208 digest-service[72]: digest-request: uid=0
    10/14/14 16:16:11.208 digest-service[72]: digest-request: init request
    10/14/14 16:16:11.213 digest-service[72]: digest-request: init return domain: MACBOOKPRO-67A4 server: ANABELAS-MACBOOK-PRO indomain was: <NULL>
    10/14/14 16:16:14.160 configd[17]: network changed: DNS* Proxy
    10/14/14 16:16:14.162 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MEO-594CCD' making interface primary (protected network)
    10/14/14 16:16:14.163 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    10/14/14 16:16:14.165 com.apple.InternetSharing[49]: InternetSharing: com.apple.InternetSharing.broadcast-0 has been started
    10/14/14 16:16:14.166 com.apple.InternetSharing[49]: BCAST is ready [en1, mtu=1500, 0 DNSv6 server(s)]
    10/14/14 16:16:14.166 com.apple.InternetSharing[49]: added addr=192.168.2.1 mask=255.255.255.0 on fw0
    10/14/14 16:16:14.167 UserEventAgent[11]: Captive: en1: Probing 'MEO-594CCD'
    10/14/14 16:16:14.168 com.apple.InternetSharing[49]: InternetSharing: com.apple.InternetSharing.broadcast-1 has been started
    10/14/14 16:16:14.170 configd[17]: network changed: v4(en1!:192.168.1.70) DNS+ Proxy+ SMB
    10/14/14 16:16:14.184 com.apple.InternetSharing[49]: com.apple.InternetSharing.broadcast-0 started: [DHCP subnet=192.168.2/24 on fw0 mtu=1500 <---> en1 mtu=1500] max-mss=1460
    10/14/14 16:16:14.184 com.apple.InternetSharing[49]:   dns: 192.168.2.1
    10/14/14 16:16:14.184 com.apple.InternetSharing[49]: started dns proxy
    10/14/14 16:16:14.185 com.apple.InternetSharing[49]: dns proxy successfully enabled
    10/14/14 16:16:14.192 com.apple.InternetSharing[49]: started "natpmpd"
    10/14/14 16:16:14.000 kernel[0]: en0: promiscuous mode enable succeeded
    10/14/14 16:16:14.192 com.apple.InternetSharing[49]: BCAST is ready [en1, mtu=1500, 0 DNSv6 server(s)]
    10/14/14 16:16:14.193 com.apple.InternetSharing[49]: added addr=192.168.3.1 mask=255.255.255.0 on bridge100
    10/14/14 16:16:14.199 com.apple.I

Maybe you are looking for

  • Adobe PDF Printer not working as print driver; 9.5.5 (pro) with Windows 7, 64 bit

    I have installed, repaired, uninstalled and re-installed Acrobat Pro 9.5.5 on a newly formatted SSD with Windows 7, 64 bit on my desktop machine. The program was installed from Acrobat Pro 9.0.0 and updated within the program. I have the program also

  • ***CALLING ALL MACBOOK AIR USERS*** Will the base model of the 2013 Macbook Air 11" be enough for my needs?

    Ok, This is my first post to this forum. I have a Late 2011 i5 Macbook Pro. I used this last year during college but the weight was just unbearable. I have decided this year to upgrade to a Macbook Air. Here is my question. I am starting uni and will

  • Photoshop is a Desktop App

    I just downloaded Photoshop and other apps to my desktop computer and now I am trying to download to my daughters Ipad Mini, and it is saying that Photoshop is a desktop app and I need to download from my computer.  How do I do that?

  • 7/8/2014 - Beta - Flash Player 14.0.0.146

    The latest Flash Player 14 beta builds are now available.  Beta builds can be downloaded from labs.adobe.com. New Features for Flash Player 14: Preview: PPAPI Debugger for Mac OS X and Windows An early preview of the PPAPI content debugger is availab

  • Not allow subtopics Exception

    Hi, I'm receiving an Exception while sending a message to a specific subtopic with blazeds. "msg.setHeader(AsyncMessage.SUBTOPIC_HEADER_NAME, "mySubtopic");" gives the following exception and I have search on this exception and cannot find a solution