I need to Health check for Web server and need report on daily basis

Hello,
How to monitor Web servers  ?
It would be great for administrators to have a daily alert using power shell script for web server
Can anyone have any scripts that triggers email like IIS services , etc.. are up and running.
Thanks
Pushparaj
Thanks, Pushparaj

Hi Pushparaj, this forum is not for sharing or building script based on request
You check the below code and build your script
$Service = Get-WmiObject -Class Win32_Service -ComputerName SERVERNAME | ?{$_.Name -eq 'IISADMIN'}
Send-MailMessage -From 'mailID' -To 'mailID' -SmtpServer 'XXXX.DOMAIN.XXX' -Body $Service.State `
-Subject 'IIS Service'
Search Script
Request Script
See this script and modify as per your needs
Regards Chen V [MCTS SharePoint 2010]

Similar Messages

  • Is there any monitoring tool for web server and application server ?

    experts,
    I just want to know that is there any monitoring utility which being used to monitor the web server activities like threads web console session tracking and so on..
    I am using Jboss as my application server.If you suggest any monitoring tool for Jboss It would be helpful for me,

    You may use jConsole

  • Windows 2008 Web Server and Crystal Reports Runtime 10 comptability

    We have migrated a website that was previoulsy on a Wndows 2003 server using IIS6 and Crystal Reports Runtime v 10 on ASP.NET 2.0
    After migrating the website, and installing the Crytal Reports runtime, we are getting application errors related to Crystal Reports Runtime in event viewer and the browser.
    For one is Crystal Reports Runtime v10 compatible with Windows 2008 Server, IIS 7 ?

    No it is not. You're looking for about a 5 year forward compatibility. At this time, only CR 2008 (12.x) and Crystal Reports Basic for Visual Studio 2008 (10.5) are supported on WIN 2008. See [this|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567] blog for more details.
    Ludek

  • Security settings for web analysis and finacial reporting

    Hi
    Would anyone be able to let me know when I am creating a group/user within Shared Services what provisioning I need to set up so that the user can create there own reports using finacial reports and web analysis.
    Also If a user is to just refresh reports but cannot change them what access do they need?
    Thanks

    Hi,
    Have a read here :- http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security_11111/apas04.html
    It should have all the information you are after.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Web Server and SSL not Working

    I am having a lot of difficulty with Lion Server.
    I finally managed to get OD and DNS to work.
    My hostname ends with .private.
    When I try to access the web page from within my network I get the following message:
    "Index of /
    Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r DAV/2 Server at xxxxxxxxx.private Port 443"
    I have not activated SSL in OD and it is not configured in server.
    When I try to activate SSL for Web Server and try to access the web page, I get the message that it cannot connect to the server.
    Any ideas?

    .Mac email can be set up two different ways on the iPhone. For "Send to Web Gallery" button to appear when clicking on the action button while viewing a photo, you must have your .Mac email set up as IMAP. This is the default setup for a .Mac email account.
    If you take the time to manually set up your .Mac email as POP, then you will not have the "Send to Web Gallery" option and you will be unable to successfully email into your web gallery even if all else is set up correctly.
    To check to see how you have .Mac email set up on your iPhone, go to the Home Screen, tap Settings, tap Mail, tap your .Mac account name, tap Advanced, move down on the page, and make sure you see "IMAP Path Prefix" setting (it can be blank and does not need to be changed). If the "IMAP Path Prefix" is there, then you do indeed have your .Mac email set up as IMAP on your iPhone.
    If you do have it set up as a POP account, you can delete that mail account by selecting the red Delete Account button when viewing your email account as listed in Settings.
    To add your .Mac email account as an IMAP account, from the Home Screen, tap Settings, tap Mail, tap Add Account..., tap .Mac, and fill out the fields with your information, tap Save and it will verify access to your .Mac email account.

  • WEB Server And Database Space requirements for deploying Web Application

       Hi,
         We are in requirement of WEB Server  And Database Space requirements for deploying  our Web Application in cloud server. We want to know technical requirements and feasibilities laid by Microsoft team for deploying web
    application.......
    Regards,
    Sreenivasa M S

    Hi,
    Please refer this link and check if it helps:
    http://blogs.technet.com/b/cbernier/archive/2013/09/24/deploy-your-web-application-to-windows-azure-from-with-visual-studio.aspx
    Regards,
    Azam Khan

  • Is there any API for connecting web server and iphone apps

    Hi,
    I have to retrieve data from Web Server and display in my iphone apps. I want to know that is there any API through which i can connect my apps to server and get data.
    One way i know that use NSURLConnection and get XML response and prase it and use it like that.
    So anyone know this?
    Thanks.

    NSURLConnection is straightforward to use. In the mobile world, and especially if you intend to use certain google APIs, I would rather tend to use JSON instead of XML. A great JSON parser for objective-c is here: http://code.google.com/p/json-framework/
    Cheers,
    Marcelo

  • GSS multiple health checks for a service

    Hi All
    Does anyone know whether a GSS can perform multiple health checks for a service. For example I want the GSS to check whether the servers (south side) are up/down, but I also want it to check another criteria before determining whether a service is up/down?
    I hope this makes sense.
    Thanks,
    Kind Regards,
    EP.

    Dear Poster
    Your thread has had no response since it's creation over
    1 year ago, therefore, I am closing the thread.
    Should the issue still be outstanding please create a new thread in the relevent forum.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • App server , process scheduler , web server and DB scripts

    Team,
    Good Morning.
    I am looking for the script which will help me in doing health check-up for app server , process scheduler , web server and DB.
    The script should trigger a email when any one of the domain is down and when it get up.
    Waiting heartly

    If you really only want scripts you should write them yourself. If you don't understand the script how can you be expected to support it, modify it, or add new features? You don't even indicate what OS your using? I could give you a copy of a powershell script but what good is that on a linux box?
    You need to identify what you really are interested in monitoring. Is it process health only? actual system integrity? Do you need to know if a process count goes under a certain threshold? Is the processes scheduler really working? Is queuing occurring somewhere? Is the web server at a critical number of open sessions? log monitoring for keywords? Do you need to actually simulate a web session which would prove the full system is working in one execution, although it won't indicate a failure will occur where some other monitoring might?
    This is why the others have recommended pre-built packages that already offer most of this. If you still want scripts, gather your requirements, think about what you really need, try some stuff on your own, and if you have a specific problem with a script or how to accomplish a particular system check, post a new question, and I'll do my best to help. I think you'll get a better response from everyone if you do that.

  • (Deployment) Minimum Software required for BUILD server and IIS WebServer

    We have a simple .Net SDK application written using VB-2005 and the Crystal Reports XI (R2) DEVELOPER package.
    The RPT files are posted on our BOE-XI (R2) server, and are called using the View-On-Demand method from the Page Server (similar to the SDK sample application). At some point in the future, our .Net applications may invoke some of the other SDK content types.
    In our environment, the .NET web-applications are checked-in to Clear Case, and then sent to a stand-alone BUILD server to be compiled. The compiled .NET web-applications are then posted to a stand-alone IIS WebServer (not the IIS server that hosts BOE InfoView/CMC).
    The BUILD server and IIS WebServer have to be as "stripped-down" as possible in order to go through our QAT and Impact Analysis process.
    So far we have had success if we deploy the SDK-only install from the Crystal Reports XI (R2) DEVELOPER package, and the service packs, but it doesn't include all the SDK components for other BOE content types.
    If we deploy the Client-only install from the BOE-XI (R2) package, and the service packs - it doesn't seem to include the CR-Viewer which we need. But it does includes a bunch of extra software (eg. UNIVERSE DESIGNER) on the desktop of the BUILD server and IIS WebServer that our QA guys don't like.
    What are the Minimum Software required for BUILD server and IIS WebServer to support CR and BOE SDKs...?
    Are there any install packages that contain JUST those components, and not all the extra software that is not needed to Build/Deploy in .NET...?
    Thanks in advance for the advice.

    Due to the CrystalDecisions.web.dll for the 2.0 framework being left off the BOE CD you will need to install the Crystal XI R2 runtimes as well as the BOE SDK.
    To get the BOE SDK launch the Enterprise XI R2 installer and choose Server Install - not Client Install.  Choose a Custom install.  You'll be presented with a drop down list for the Enterprise components.  Deselect everything and then look for the Developer Components option.  You may have to drill down into one of the levels to find it.  Under Developer Components you'll see the BusinessObjects Enterprise .NET SDK.  Select it to install it.
    Jason

  • Vocabulary for web design and beyond

    Anyone tackling web design will encounter dozens of unfamiliar terms. I have compiled together this glossary to help them. I may update and expand in the future. Until then, feel free to use or pass along.
    Some of these terms don’t relate strictly to web design, but also to computer graphics and computer programming generally, as I’ve found that such terms are also important to reading and understanding any tutorials or other materials on web design.
    Asynchronous (1) General use. Not synchronous; not occurring or existing at the same time or having the same period or phase. (2) Digital communication. Pertaining to a transmission technique that does not require a common clock between the communicating devices; timing signals are instead derived from special characters in the data stream.
    Bitmap image Image that uses geometrical primitives such as points, lines, curves, and shapes, which are all based on mathematical equations. In a bitmap image, each pixel on a display screen is assigned at least one bit to indicate whether the pixel should reflect the background color, the foreground color, or some other color. each pixel in the bitmap might have 16, 24, or 48 bits of information associated with it. The more bits, the greater the resolution of the bitmap – and the larger the file. Compare Vector image.
    C (programming language) General-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. It was designed for implementing system software and is also widely used for developing portable application software. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
    C++ Statically typed, free-form, multi-paradigm, compiled, general-purpose programming language. It was developed by Bjarne Stroustrup starting in 1979 at Bell Labs as an enhancement to the C language and originally named C with Classes. It was renamed C++ in 1983.
    Cache Component that transparently stores data so that future requests for that data can be served faster. The data that is stored within a cache might be values that have been computed earlier or duplicates of original values that are stored elsewhere. If requested data is contained in the cache (cache hit), this request can be served by simply reading the cache, which is comparatively faster. Otherwise (cache miss), the data has to be recomputed or fetched from its original storage location, which is comparatively slower.
    Cascading Style Sheet (CSS) Style sheet language used to describe the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including SVG and XUL.
    ColdFusion Programming language based on standard HTML that is used to write dynamic webpages. It allows for the creation of pages that differ depending on user input, database lookups, time of day, or other criteria. ColdFusion pages consist of standard HTML tags together with CFML (ColdFusion Markup Language) tags such as <CFQUERY>, <CFIF> and <CFLOOP>. ColdFusion was introduced by Allaire in 1996, acquired by Macromedia in a merger in April 2001, and acquired by Adobe in December 2005.
    Compound selector Can be used to combine two or more style rules to create a style definition that displays only when one style is contained within another. Compound styles are useful when you want to do something like use the Heading 1 tag multiple times to format headlines in different ways on the same web page. For example, you could create one style for headlines that appear in the main story area of a page and then create another style for headlines that appear in the sidebar on the page and still use the Heading 1 tag to format both. Compound styles are created by combining ID, class, or tag styles and look like this: #sidebar h1.
    Contextual selector A type of Style Sheet Selector that
    CRE Loaded Open source online store management and shopping cart system for e-commerce from Chain Reaction eCommerce. It is based on osCommerce, runs on any LAMP (Linux, Apache, MySQL, PHP) web server, and is supported by an active international community of users and developers. For a monthly subscription ($10/mo. as of 2011), CRE Loaded allows small and medium-sized merchants to accept credit card payments in a web site that mirrors their own online stores.
    CSS See Cascading Style Sheet.
    Dynamic HTML (DHTML) Umbrella term for a collection of technologies used together to create interactive and animated web sites by using a combination of a static markup language (such as HTML), a client-side scripting language (such as JavaScript), a presentation definition language (such as CSS), and the Document Object Model. DHTML allows scripting languages to change variables in a web page's definition language, which in turn affects the look and function of otherwise “static” HTML page content, after the page has been fully loaded and during the viewing process.
    ECMA International International membership-based non-profit standards organization for information and communication systems.
    ECMAScript Scripting language standardized by Ecma International in the ECMA-262 specification and ISO/IEC 16262. The language is widely used for client-side scripting on the web, in the form of several well-known dialects such as JavaScript, JScript, and ActionScript.
    Extensible HyperText Markup Language (XHTML) Family of XML markup languages that mirror or extend versions of the widely used HTML, the language in which web pages are written. While HTML (prior to HTML5) was defined as an application of Standard Generalized Markup Language (SGML), a very flexible markup language framework, XHTML is an application of XML, a more restrictive subset of SGML. Because XHTML documents need to be well-formed, they can be parsed using standard XML parsers—unlike HTML, which requires a lenient HTML-specific parser.
    Extensible Markup Language Set of rules for encoding documents in machine-readable form. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards. Its design goals emphasize simplicity, generality, and usability over the Internet. It is a textual data format with strong support via Unicode for the languages of the world. Known by its acronym XML.
    HTML See HyperText Markup Language.
    Hypermedia Graphics, audio, video, plain text and hyperlinks that intertwine to create a generally non-linear medium of information. This contrasts with the broader term multimedia, which may be used to describe non-interactive linear presentations as well as hypermedia. The World Wide Web is a classic example of hypermedia, whereas a non-interactive cinema presentation is an example of standard multimedia due to the absence of hyperlinks.
    Hypertext Text displayed on a computer or other electronic device with references (hyperlinks) to other text that the reader can immediately access, usually by a mouse click or keypress sequence.
    Hypertext Markup Language (HTML) Predominant markup language and basic building-block of webpages. It is written in the form of HTML elements consisting of tags, enclosed in angle brackets (like <html>), within the web page content. HTML tags normally come in pairs like <h1> and </h1>. The first tag in a pair is the start tag, the second tag is the end tag (they are also called opening tags and closing tags). Known by its acronym HTML.
    Hypertext preprocessor (PHP) Widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. It brings life to websites by communicating with external data sources, such as databases, news feeds, and XML documents. PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document. PHP 3 was launched in 1998; PHP 4 was released in 2000; and PHP 5 was released in 2005.
    Java Programming language released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. Java applications are typically compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture. Java is a general-purpose, concurrent, class-based, object-oriented language that is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere". Java is currently one of the most popular programming languages in use, and is widely used from application software to web applications.[
    JavaScript Implementation of the ECMAScript language standard and is typically used to enable programmatic access to computational objects within a host environment. It can be characterized as a prototype-based object-oriented scripting language that is dynamic, weakly typed and has first-class functions.
    JPEG Commonly used method of Lossy compression for digital photography that was named after the Joint Photographic Experts Group, which created the standard. The degree of compression can be adjusted, allowing a selectable tradeoff between storage size and image quality. JPEG typically achieves 10:1 compression with little perceptible loss in image quality.
    Linux Family of Unix-like computer operating systems using the Linux kernel (central OS component). Linux can be installed on a wide variety of computer hardware, ranging from mobile phones, tablet computers and video game consoles, to mainframes and supercomputers. The development of Linux is one of the most prominent examples of free and open source software collaboration; typically all the underlying source code can be used, freely modified, and redistributed, both commercially and non-commercially, by anyone under licenses such as the GNU General Public License.
    Lossy compression Data encoding method which discards (loses) some of the data, in order to achieve its goal, with the result that decompressing the data yields content that is different from the original, though similar enough to be useful in some way. Lossy compression is most commonly used to compress multimedia data (audio, video, still images), especially in applications such as streaming media and internet telephony. By contrast, lossless compression is required for text and data files, such as bank records, text articles, etc.
    MySQL Relational database management system that runs as a server providing multi-user access to a number of databases. The MySQL development project has made its source code available under the terms of the GNU General Public License, as well as under a variety of proprietary agreements. Acronym for “My Structured Query Language.”
    Open source Describes practices in production and development that promote access to the end product's source materials. Before the term open source became widely adopted, developers and producers used a variety of phrases to describe the concept; open source gained hold with the rise of the Internet, and the attendant need for massive retooling of the computing source code.
    osCommerce Open source Commerce. It allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs involved. Combines open source solutions to provide a free and open development platform, which includes the PHP web scripting language, the Apache web server, and the MySQL database server. With no restrictions or special requirements, osCommerce can be installed on any PHP3 or PHP4 enabled web server, on any environment that PHP and MySQL supports, which includes Linux, Solaris, BSD, and Microsoft Windows environments.
    PHP See Hypertext preprocessor.
    Rasterization The process of converting a Vector image into a Bitmap image.
    Rasterize See Rasterization.
    Shopping cart software Software used in e-commerce to assist people making purchases online. The software allows online shopping customers to accumulate a list of items for purchase. Upon checkout, the software typically calculates a total for the order, including shipping and handling (i.e. postage and packing) charges and the associated taxes.
    Style sheet selector One of the two parts of a CSS rule (the other being the properties, or declaration block) that declares which of the markup elements a style applies to. Selectors may apply to all elements of a specific type, or only those elements that match a certain attribute (e.g., how they are placed relative to each other in the markup code, or on how they are nested within the document object model). There are many types of style sheet selectors: element selectors, which select by element name; class selectors, which select by class name; contextual selectors, which select by context based on parent elements (what the element is nested within or what precedes it in the document), etc..
    Supercomputer Computer that is at the frontline of current processing capacity, particularly speed of calculation. Supercomputers are typically one-of-a-kind custom designs produced by companies such as Cray, IBM and Hewlett-Packard, who had purchased many of the 1980s companies to gain their experience. Since October 2010, the Tianhe-1A supercomputer, located in China, has been the fastest in the world.
    Tag Non-hierarchical keyword or term assigned to a piece of information (such as an Internet bookmark, digital image, or computer file). This kind of metadata helps describe an item and allows it to be found again by browsing or searching. Tags are generally chosen informally and personally by the item's creator or by its viewer, depending on the system. HTML tags include paragraph, heading 1, heading 2, etc.
    Unix Computer operating system originally developed in 1969 by a group of AT&T employees at Bell Labs. The Unix operating system was first developed in assembly, which is machine-dependent and a low-level programming language. Ken Thompson created the B language in 1969 and Unix was written in the B language, a high-level programming language. The first Unix system written in C was released in November 1973.
    Vector image Image made up of numerous individual, scalable objects. These objects are defined by mathematical equations rather than pixels, so they always render at the highest quality. Objects may consist of lines, curves, and shapes with editable attributes such as color, fill, and outline. Changing the attributes of a vector object does not effect the object itself. Compare Bitmap image.
    Vector processor Central processing unit (CPU) that implements an instruction set containing instructions that operate on one-dimensional arrays of data called vectors. This is in contrast to a scalar processor, whose instructions operate on single data items. Also known as array processor.
    Web analytics Measurement, collection, analysis and reporting of internet data, including the number of visitors and page views, for understanding and optimizing web usage. It can be used as a tool for measuring website traffic and for business and market research. Web analytics applications can also help companies measure the results of traditional print advertising campaigns. It helps one to estimate how the traffic to the website changed after the launch of a new advertising campaign.
    Web design Design of the way that content is delivered to an end-user through the World Wide Web, using a web browser or other web-enabled software.
    Web development Refers to the work involved in developing a web site for the Internet (World Wide Web) or an intranet (a private network). This can include Web design, web content development, client liaison, client-side/server-side scripting, web server and network security configuration, and e-commerce development. However, among web professionals, "web development" usually refers to the main non-design aspects of building web sites: writing markup and coding. Web development can range from developing the simplest static single page of plain text to the most complex web-based internet applications, electronic businesses, or social network services.
    World Wide Web Consortium Main international standards organization for the World Wide Web. It is made up of member organizations which maintain full-time staff for the purpose of working together in the development of standards for the World Wide Web. Known by its acronym W3C.
    XHTML See Extensible HyperText Markup Language.
    XML See Extensible Markup Language.
    Zend Engine Open source scripting engine (a Virtual Machine) commonly known for the important role it plays in the web automation language PHP.

    Thanks for posting this!
    I would only mention that your definition is incomplete for this -
    Contextual selector A type of Style Sheet Selector that
    and that it's most often referred to now as a Descendent selector, not a contextual selector.  It's basically the same as the Compound selector that you have already defined....

  • Installed the Mac update, checked for faulty fonts, and ran the Font Test Script. PS still crashes

    Hi guys,
    Ive done everything suggested and my PS is still crashing. I will attatch my crash report to see if it helps with anything. I used Font Doctor and Font Book to check for bad fonts and removed the two that came up. Tried again and still nothing. What should I do now? I really need to use the type tool for a project Im working on. I can edit pictures and use the program just fine up until the point I hit the type tool. I try to run the font test script I found here on the website and the program crashes before the scrip starts running. Its getting a little frustrating.
    Here's the crash report:
    Process:         Adobe Photoshop CS5 [10566]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.1 (12.0.1)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2010-07-02 13:21:42.534 -0400
    OS Version:      Mac OS X 10.6.4 (10F569)
    Report Version:  6
    Interval Since Last Report:          131251 sec
    Crashes Since Last Report:           58
    Per-App Interval Since Last Report:  22425 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      F5622891-F7B9-4617-818C-E916FBC834FB
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x127111400: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff83fa83d6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff84048972 abort + 83
    2   libSystem.B.dylib                 0x00007fff84037625 szone_error + 519
    3   libSystem.B.dylib                 0x00007fff83f64b4b small_free_list_remove_ptr + 246
    4   libSystem.B.dylib                 0x00007fff83f615ef szone_free_definite_size + 3254
    5   libFontParser.dylib               0x00007fff86220314 FPFontCreateFontsWithPath + 1358
    6   libCGXType.A.dylib                0x00007fff81349e52 create_private_data_with_path + 22
    7   com.apple.CoreGraphics            0x00007fff84b56da3 CGFontCreateFontsWithPath + 51
    8   com.apple.CoreGraphics            0x00007fff84b56a04 CGFontCreateFontsWithURL + 433
    9   com.apple.CoreText                0x00007fff856b3073 TCGFont::TCGFont(__CFURL const*, bool) + 73
    10  com.apple.CoreText                0x00007fff856b2e00 TCGFontCache::CopyFont(__CFURL const*) const + 92
    11  com.apple.CoreText                0x00007fff856b2c5a TBaseFont::CopyNativeFont() const + 50
    12  com.apple.CoreText                0x00007fff856b4517 TBaseFont::CopyAvailableTables(unsigned int) const + 25
    13  AdobeCoolType                     0x000000010430360e CTCleanup + 1011924
    14  AdobeCoolType                     0x00000001043065a4 CTCleanup + 1024106
    15  AdobeCoolType                     0x00000001043079a4 CTCleanup + 1029226
    16  AdobeCoolType                     0x000000010430a1d3 CTCleanup + 1039513
    17  AdobeCoolType                     0x000000010425bc45 CTCleanup + 325387
    18  AdobeCoolType                     0x00000001041be85d 0x1041b7000 + 30813
    19  AdobeCoolType                     0x00000001042b9cf1 CTCleanup + 710583
    20  AdobeCoolType                     0x000000010426748c CTCleanup + 372562
    21  AdobeCoolType                     0x00000001042660e6 CTCleanup + 367532
    22  AdobeCoolType                     0x00000001042b84e8 CTCleanup + 704430
    23  AdobeCoolType                     0x0000000104206353 0x1041b7000 + 324435
    24  com.adobe.Photoshop               0x000000010090a119 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6476937
    25  com.adobe.Photoshop               0x000000010090a145 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6476981
    26  com.adobe.Photoshop               0x0000000100904cef AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6455391
    27  com.adobe.Photoshop               0x0000000100905d08 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6459512
    28  com.adobe.Photoshop               0x0000000100905e78 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6459880
    29  com.adobe.Photoshop               0x0000000100905f57 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6460103
    30  com.adobe.Photoshop               0x0000000100908e5c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6472140
    31  com.adobe.Photoshop               0x00000001002cfd7e 0x100000000 + 2948478
    32  com.adobe.Photoshop               0x00000001002d0934 0x100000000 + 2951476
    33  com.adobe.Photoshop               0x0000000100267557 0x100000000 + 2520407
    34  com.adobe.Photoshop               0x00000001002683df 0x100000000 + 2524127
    35  com.adobe.Photoshop               0x000000010007b4eb 0x100000000 + 505067
    36  com.adobe.Photoshop               0x000000010024f209 0x100000000 + 2421257
    37  com.adobe.Photoshop               0x0000000100278c95 0x100000000 + 2591893
    38  com.adobe.PSAutomate              0x000000011e08659f CPsTextFonts::GetFontDescriptor(bool) + 145
    39  com.adobe.PSAutomate              0x000000011e086603 CPsTextFonts::GetPostScriptNamesList(CPsWActionList&) const + 51
    40  com.adobe.PSAutomate              0x000000011e086806 CPsTextFonts::HostGetLength() const + 36
    41  com.adobe.PSAutomate              0x000000011e0a5f64 MultiScript::LiveCollectionBase::get(int, ScCore::Variant&, ScCore::Error*) const + 66
    42  com.adobe.AdobeExtendScript       0x000000011e4c4a6d ScScript::LiveObjectProperty::get(ScScript::Object&, int) + 941
    43  com.adobe.AdobeExtendScript       0x000000011e485bd4 jsOpVariable::get(jsRunner&, ScScript::PropRef&, ScScript::ESVariant&, bool) + 68
    44  com.adobe.AdobeExtendScript       0x000000011e480470 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 176
    45  com.adobe.AdobeExtendScript       0x000000011e47e918 jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 312
    46  com.adobe.AdobeExtendScript       0x000000011e482390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    47  com.adobe.AdobeExtendScript       0x000000011e484474 jsOpTry::run(jsRunner&, ScScript::ESVariant&) const + 276
    48  com.adobe.AdobeExtendScript       0x000000011e482390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    49  com.adobe.AdobeExtendScript       0x000000011e47be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    50  com.adobe.AdobeExtendScript       0x000000011e4a5741 jsRunner::run(ScScript::ESVariant&) + 113
    51  com.adobe.AdobeExtendScript       0x000000011e492cb8 jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 152
    52  com.adobe.AdobeExtendScript       0x000000011e4c9504 ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 1652
    53  com.adobe.AdobeExtendScript       0x000000011e4cd40d ScScript::RealEngine::eval(ScScript::Script&, ScCore::Variant*, int, int, ScCore::Variant const*) + 685
    54  com.adobe.AdobeExtendScript       0x000000011e4c8dc1 ScScript::RealEngine::eval(ScCore::String const&, ScCore::Variant*, int, int, ScCore::Variant const*, ScCore::String const*, int) + 225
    55  com.adobe.PSAutomate              0x000000011e0a30be MultiScript::ExtendScript::RunScript(ScScript::Engine*, ScCore::String const&, ScCore::Array const&, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) const + 538
    56  com.adobe.PSAutomate              0x000000011e0045c3 CScriptPs::ExecuteGlobalJavaScript(ScCore::String const&, ScCore::String const&, ScCore::Array const*, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) + 335
    57  com.adobe.PSAutomate              0x000000011e004a40 CScriptPs::DoExecute(PIActionParameters*) + 338
    58  com.adobe.PSAutomate              0x000000011e005042 PluginMain + 110
    59  com.adobe.Photoshop               0x00000001006fe083 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4330483
    60  com.adobe.Photoshop               0x00000001002778ec 0x100000000 + 2586860
    61  com.adobe.Photoshop               0x0000000100277a69 0x100000000 + 2587241
    62  com.adobe.Photoshop               0x0000000100071796 0x100000000 + 464790
    63  com.adobe.Photoshop               0x0000000100066baf 0x100000000 + 420783
    64  com.adobe.Photoshop               0x0000000100066c72 0x100000000 + 420978
    65  com.adobe.Photoshop               0x00000001012dd6cd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779837
    66  com.apple.Foundation              0x00007fff87aa3a2d __NSFireTimer + 114
    67  com.apple.CoreFoundation          0x00007fff88336678 __CFRunLoopRun + 6488
    68  com.apple.CoreFoundation          0x00007fff8833484f CFRunLoopRunSpecific + 575
    69  com.apple.HIToolbox               0x00007fff8891591a RunCurrentEventLoopInMode + 333
    70  com.apple.HIToolbox               0x00007fff8891567d ReceiveNextEventCommon + 148
    71  com.apple.HIToolbox               0x00007fff889155d8 BlockUntilNextEventMatchingListInMode + 59
    72  com.apple.AppKit                  0x00007fff8415e29e _DPSNextEvent + 708
    73  com.apple.AppKit                  0x00007fff8415dbed -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    74  com.apple.AppKit                  0x00007fff841238d3 -[NSApplication run] + 395
    75  com.adobe.Photoshop               0x00000001012dd5ee AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779614
    76  com.adobe.Photoshop               0x00000001012de819 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16784265
    77  com.adobe.Photoshop               0x00000001000688c2 0x100000000 + 428226
    78  com.adobe.Photoshop               0x0000000100237c01 0x100000000 + 2325505
    79  com.adobe.Photoshop               0x0000000100237c91 0x100000000 + 2325649
    80  com.adobe.Photoshop               0x00000001000028e4 0x100000000 + 10468
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff83f7308a kevent + 10
    1   libSystem.B.dylib                 0x00007fff83f74f5d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff83f74c34 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff83f7475e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff83f74088 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff83f73f25 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108423c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010841ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108423cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff83f5a34e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff85bb388e MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011b655bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b1eea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff85bdd4c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b4ccc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff85b46bcf MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010591eccd 0x1058e4000 + 240845
    6   AdobeACE                          0x000000010591e67a 0x1058e4000 + 239226
    7   ...ple.CoreServices.CarbonCore    0x00007fff85b1eea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f94d45 nanosleep + 148
    2   com.adobe.PSAutomate              0x000000011e18209b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x000000011e163fd3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x000000011e182196 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000011f67f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x000000011f440a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000011f67f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x000000011f440a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff83f5a2fa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f5a96d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff883353c2 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff8833484f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices     0x00007fff8322363f MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices     0x00007fff8322520a CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000011f67f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x000000011f814943 APXGetHostAPI + 4091683
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000011f67f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x000000011f69b95c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff83f9ddf2 recvfrom + 10
    1   ServiceManager-Launcher.dylib     0x000000012230f982 Invoke + 54020
    2   ServiceManager-Launcher.dylib     0x000000012230eadf Invoke + 50273
    3   ServiceManager-Launcher.dylib     0x000000012230db26 Invoke + 46248
    4   ServiceManager-Launcher.dylib     0x000000012230db81 Invoke + 46339
    5   ServiceManager-Launcher.dylib     0x000000012230dc02 Invoke + 46468
    6   ServiceManager-Launcher.dylib     0x000000012230830d Invoke + 23695
    7   ServiceManager-Launcher.dylib     0x00000001223084a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib     0x0000000122308f2f Invoke + 26801
    9   ServiceManager-Launcher.dylib     0x000000012230901d Invoke + 27039
    10  ServiceManager-Launcher.dylib     0x000000012230c31f Invoke + 40097
    11  ServiceManager-Launcher.dylib     0x000000012230c5c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib     0x000000012230cb84 Invoke + 42246
    13  ServiceManager-Launcher.dylib     0x000000012230cd71 Invoke + 42739
    14  ServiceManager-Launcher.dylib     0x00000001222fedaf Login + 1773
    15  ServiceManager-Launcher.dylib     0x0000000122300295 Login + 7123
    16  ServiceManager-Launcher.dylib     0x000000012230d2a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib     0x000000012230f6c1 Invoke + 53315
    18  libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    19  libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff83f9ddce select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff88356e92 __CFSocketManager + 818
    2   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore    0x00007fff85b4cce4 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b4ca92 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore    0x00007fff85b4c790 AsyncFileThread(void*) + 61
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f94d45 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff83f94caf usleep + 57
    3   com.apple.AppKit                  0x00007fff842a9619 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff87a4de8d __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001279f8000  rcx: 0x00007fff5fbf9978  rdx: 0x0000000000000000
      rdi: 0x0000000000002946  rsi: 0x0000000000000006  rbp: 0x00007fff5fbf9990  rsp: 0x00007fff5fbf9978
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00007fff83fa4412  r11: 0x0000000000000202
      r12: 0x0000000000000000  r13: 0x0000000127111400  r14: 0x0000000106bd1000  r15: 0x00000001279f80c0
      rip: 0x00007fff83fa83d6  rfl: 0x0000000000000202  cr2: 0x0000000127a2c000
    Binary Images:
           0x100000000 -        0x1026a7fff +com.adobe.Photoshop 12.0.1 (12.0.1) <CFDED939-0A8A-EBC4-215B-94A4A224A1D1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103287000 -        0x1032fffef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103315000 -        0x10331cfff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103324000 -        0x103334ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10333f000 -        0x103345ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10334c000 -        0x103552fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035e5000 -        0x103793fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103835000 -        0x103c65fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dbf000 -        0x1040eaff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041b7000 -        0x1044dffe7 +AdobeCoolType ??? (???) <7EF54CD5-3426-A1E5-7961-FA34CCC2018D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104577000 -        0x104598ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045a5000 -        0x1045d0ff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045e2000 -        0x104726fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10476d000 -        0x1047d2fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047ee000 -        0x104804fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10481c000 -        0x1048b2fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104929000 -        0x104947fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104964000 -        0x104b93fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c72000 -        0x104d05fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d25000 -        0x10506efef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x1051fe000 -        0x105380fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105422000 -        0x10579afff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058e4000 -        0x1059f9fff +AdobeACE ??? (???) <5BFBC4A1-1704-06A7-B656-D28BF592307A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a1e000 -        0x105a3afff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a44000 -        0x105aaeff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105ae1000 -        0x105bb4ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bd4000 -        0x105bd8ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105bdc000 -        0x105c53fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c74000 -        0x105cd2ffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ce0000 -        0x10617bfff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x106701000 -        0x106757feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10679c000 -        0x1067c1ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x1067fb000 -        0x106800ffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106805000 -        0x1069a1fff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a49000 -        0x106a62feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a73000 -        0x106a79feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a80000 -        0x106a80ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a83000 -        0x106a8bff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106a92000 -        0x106b78fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x106fc4000 -        0x106fc6fef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108100000 -        0x10811cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x108147000 -        0x108167ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x1081e7000 -        0x1081f6fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <0628B99F-F193-89BF-6332-B8C50D301F29> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1081fa000 -        0x1081fbfff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <5EB939D1-53CF-EDD2-36DF-3E8A3FB13179> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108400000 -        0x108470ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1199e2000 -        0x1199f9fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1B9D1076-CC7C-521A-676C-F7BE51F65271> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1199fd000 -        0x119a1efef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <FA6280BD-A73C-3A3D-6494-81EB80FE1C24> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x119a22000 -        0x119a34fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <A77665EF-B6FB-00B4-2F3D-90D7845814C9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x119a3a000 -        0x119a42fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x119ad5000 -        0x119adcfff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x119ae5000 -        0x119aeefff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11b231000 -        0x11b235fff  com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <F6E20DCA-3C00-8990-1F60-E5517F7D0C77> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11b23a000 -        0x11b240fff  com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <97D7045E-CFD7-AD5C-6954-3B7C3F367C63> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11b537000 -        0x11b59aff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11b620000 -        0x11b68bff0 +MultiProcessor Support ??? (???) <8A0A7B32-67A5-4CD5-80DC-F9BEDA271F2C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11e000000 -        0x11e25cfef +com.adobe.PSAutomate 12.0.1 (12.0.1) <6A522366-AB0A-E14E-D695-CDC7F5211991> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11e472000 -        0x11e516ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.25 (4.1.25.8769) <144F37AB-BE20-D159-C326-A34154FE04B3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11e578000 -        0x11e618fef +com.adobe.AdobeScCore ScCore 4.1.25 (4.1.25.8769) <28F9410F-A5B5-BB59-FB7E-F5DB8FA70A0C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11eb00000 -        0x11eb3eff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <22174597-D163-7A20-C82A-C00C2CA19640> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x11eb4a000 -        0x11eb74fef  com.apple.mio.DAL.VDC_4 130.0 (1035) <605498BB-69D1-09C2-2720-FC7FBE9C289E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x11f400000 -        0x120247fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x122279000 -        0x1222b6feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x1222fc000 -        0x122324fef +ServiceManager-Launcher.dylib ??? (???) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x1224a8000 -        0x1224cefff  GLRendererFloat ??? (???) <10AFC7E0-A5CE-8F0E-7084-439BE59F7E95> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x122900000 -        0x122a8dfe7  GLEngine ??? (???) <57D733C2-F7CB-2B8F-CD34-C85A193145DE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x122abe000 -        0x122ee1fef  libclh.dylib 3.1.1 C  (3.1.1) <83F3C7DB-D2E2-07B0-E433-386C9428AD72> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x2006fbff7  com.apple.GeForceGLDriver 1.6.16 (6.1.6) <4F3D3917-641B-AA12-04DE-D3A1995C3B18> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800b2fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff800d9000 -     0x7fff80156fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff80268000 -     0x7fff8028dfe7  com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8028e000 -     0x7fff8029bfe7  libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <7B891D4C-1F19-4DB0-FD12-7A7D5E8F47AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8029c000 -     0x7fff803a6ff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff803f7000 -     0x7fff80430ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff80431000 -     0x7fff804c1fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff804c2000 -     0x7fff804c6ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80644000 -     0x7fff8067cfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
        0x7fff806b3000 -     0x7fff808eefef  com.apple.imageKit 2.0.3 (1.0) <8DA80BC9-C671-BD89-EA2E-3C632D6ECE30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff808f1000 -     0x7fff808f1ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff808f2000 -     0x7fff80adcfe7  com.apple.JavaScriptCore 6533 (6533.13) <C2D33B72-06F1-B789-6FD3-FB09EEB6C907> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80add000 -     0x7fff80b2cff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff80b57000 -     0x7fff80b5cfff  libGFXShared.dylib ??? (???) <1265FAEF-1C97-B339-28A4-4510589B067B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff80b5d000 -     0x7fff80bc5fff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
        0x7fff80bc6000 -     0x7fff80bc7ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff80bc8000 -     0x7fff80c7dfe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff80c7e000 -     0x7fff80ceaff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff80ceb000 -     0x7fff80cfdfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff80cfe000 -     0x7fff80ebcfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
        0x7fff80ebd000 -     0x7fff80ec2ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff80ec3000 -     0x7fff80ec5fff  libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff80ec6000 -     0x7fff80f1bfef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff80f1c000 -     0x7fff80fabfff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff80fac000 -     0x7fff80facff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff80fad000 -     0x7fff80fadff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80fae000 -     0x7fff81033fff  com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff81034000 -     0x7fff81037ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff81038000 -     0x7fff812a1ff7  com.apple.QuartzComposer 4.1 (156.16) <0BAE3C90-CF60-C0C7-C29E-BF9922074095> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff812a2000 -     0x7fff812c0fff  libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff812fd000 -     0x7fff812feff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff812ff000 -     0x7fff81348ff7  com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
        0x7fff81349000 -     0x7fff8134dff7  libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <E666EBC7-2D87-A3C6-9461-A596B4E53593> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8134e000 -     0x7fff8134eff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8135b000 -     0x7fff81410fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff81411000 -     0x7fff81420ff7  com.apple.opengl 1.6.8 (1.6.8) <0CDC4F98-7981-A114-1778-AF171075138E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff81421000 -     0x7fff814bbfff  com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff815d8000 -     0x7fff81a1bfef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff81a1c000 -     0x7fff81a1cff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff826e2000 -     0x7fff82968ff7  com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82969000 -     0x7fff82a82fef  libGLProgrammability.dylib ??? (???) <B057FC52-6A97-F450-48D8-325A70423A53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82cc6000 -     0x7fff82d91fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff82d92000 -     0x7fff82dbafff  com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff82dbb000 -     0x7fff82df8ff7  libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff82df9000 -     0x7fff82e3cff7  libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <DF457CB3-CE61-0FD4-1403-BB68BC2CC998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff82f9e000 -     0x7fff830c6ff7  com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff830c7000 -     0x7fff83113fff  libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
        0x7fff831b9000 -     0x7fff831fafff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff831fb000 -     0x7fff83214fff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff83215000 -     0x7fff8325afff  com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff832f6000 -     0x7fff833c6ff7  com.apple.CFNetwork 454.9.7 (454.9.7) <AA6EB690-6CCF-603D-AAC2-35B9E05D1593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff833c7000 -     0x7fff83418fe7  com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff8341e000 -     0x7fff8344ffff  libGLImage.dylib ??? (???) <2F18DB77-CF77-1311-9E20-FE460090C166> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff83450000 -     0x7fff83452fff  com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff83453000 -     0x7fff83496fff  libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
        0x7fff83497000 -     0x7fff834f5ff7  com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff834f6000 -     0x7fff8350cff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <BFFEC259-F103-B25A-BB52-1AA79116DDBA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff83529000 -     0x7fff83529ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8352a000 -     0x7fff8356efe7  com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff83593000 -     0x7fff835a9fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff835aa000 -     0x7fff835bbff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff835bc000 -     0x7fff835bfff7  libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff835c0000 -     0x7fff835f1fef  libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff83739000 -     0x7fff83744ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff83790000 -     0x7fff83b05fe7  com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff83b06000 -     0x7fff83b4dff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83bca000 -     0x7fff83d08fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff83d09000 -     0x7fff83d38ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff83df7000 -     0x7fff83eefff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
        0x7fff83ef0000 -     0x7fff83f31fef  com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff83f32000 -     0x7fff83f58fe7  libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff83f59000 -     0x7fff84119fef  libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
        0x7fff8411a000 -     0x7fff84b10fff  com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84b41000 -     0x7fff8523e067  com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8523f000 -     0x7fff85319ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff8531a000 -     0x7fff8531bfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff854bc000 -     0x7fff85506ff7  com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff85507000 -     0x7fff8550dff7  IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8559b000 -     0x7fff856aafe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff856ab000 -     0x7fff85729fff  com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff8572a000 -     0x7fff8584ffef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85932000 -     0x7fff85937fff  libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff85938000 -     0x7fff8593ffff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85940000 -     0x7fff8597bfff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff8597c000 -     0x7fff859bdff7  com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff859be000 -     0x7fff85a4afef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff85a4b000 -     0x7fff85a51ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85a52000 -     0x7fff85ad4fff  com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff85ad5000 -     0x7fff85b00ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff85b01000 -     0x7fff85b17fff  com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff85b18000 -     0x7fff85e4bfe7  com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff85e4c000 -     0x7fff85e6cff7  com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff86120000 -     0x7fff8613bff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff8617d000 -     0x7fff8617dff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8617e000 -     0x7fff8621efff  com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8621f000 -     0x7fff862dffff  libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff866b4000 -     0x7fff866c3fff  com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff866c4000 -     0x7fff866ccfff  com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff866d5000 -     0x7fff86737fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff86738000 -     0x7fff868a7fe7  com.apple.QTKit 7.6.6 (174

    Try them again.  The bug you are seeing should crash on bad fonts in FontBook, or at least the fonts should fail to validate.
    Also, sometimes you need to restart the machine after removing bad fonts because apps can hang onto the fonts while they are open.
    There is nothing more we can do on the Photoshop side - this is an aknowledged Apple bug, that we cannot avoid (it even happens sometimes when we aren't touching type code directly, because other OS code touches the type code).

  • Since updating to Mavericks, Mail doesn't work properly.  It just stops working (no error messages--it just won't check for new mail) and I must shut it down and reopen it to get it working again.  Any suggestions?

    Since updating to Mavericks, Mail doesn't work properly.  It just stops working (no error messages--it just won't check for new mail) and I must shut it down and reopen it to get it working again.  Any suggestions?

    Try to force quit the mail app
    Double tap the home button. When you see the app previews on the screen scroll sideways if needed to get the preview in question on the screen. Flick that preview up and off the screen to close the app. Single tap the home button or home screen preview to exit the mode.
    Failing that, go into the settings, mail, contacts and calendars and remove your account info then put it back in and see if that works

  • Seperate NT service for App server and Process Scheduler

    Is it possible to create a separate NT service for App server and Process Schedule for the same environment? Everytime i need to shutdown either App Domain or Prcs Domain (not both) using service, it brings down both.
    I could use psadmin but services run as a different user.
    Please advise.

    What PeopleTools release are you using?  Off the top of my head, one strategy would be to use different PS_CFG_HOMEs for the App and the Process scheduler.  The service points to the PS_CFG_HOME and reads the pswinsrv.cfg file to know what to start/stop.  I'm not sure there is a way to override psntsrv and tell it to use a different config file, so you may need a different HOME.  You could also create a script that wraps the service start/stop.  It could edit/update the config file prior to stop/start and remove Process Scheduler from the config and then reinsert it later.
    You could have a stop_app/start_app and stop_prcs/start_prcs script that would copy in specific versions of the pswinsrv.cfg file for what you want to do.

  • WLC: which software-version support SHA2 certificates for Web Authentification and Web Management ?

    Hello,
    I tried to install new SHA2 3th-Party certificates on our WLCs. There are old WiSM1-Boards and 2504 to support our old 1230 Access Points, running 7.0.251.2, which didn't install it, although the config manual for 7.6 and 8.0 say that SHA2 certificates are supported since 7.0.250.0. When I tried to install the SHA2-certificates I get the message "File transfer failed" an the log says:
    *TransferTask: Dec 12 13:22:14.394: #UPDATE-3-CERT_INST_FAIL: updcode.c:1869 Failed to install Webauth certificate. rc = 1
    *TransferTask: Dec 12 13:22:14.394: #SSHPM-3-KEYED_PEM_DECODE_FAILED: sshpmcert.c:4085 Cannot PEM decode private key
    I tried to install the same certificates on our WiSM2-Boards, running 7.4.121.0 and I failed too. The same certificates could be installed on a 2504 running 8.0.100 without any problems.
    In all 3 cases I tried to install unchained certificates for web management and Level 3 chained certificates  for web authentication. I used the following guides to get the certificates (e.g. taken from the config manual 8.0.100):
    http://www.cisco.com/c/en/us/support/docs/wireless/4400-series-wireless-lan-controllers/109597-csr-chained-certificates-wlc-00.html
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wlan-security/70584-csr-wlc-00.pdf
    Which software versions support SHA2 certificates and which didn't ? Is the a list for it ?
    Regards

    Hello,
    I solved the problem. First I used a Debian Linux system with Openssl 1.0.1. After I searched the internet using one of the log messages above I found sites which mentioned to use Openssl 0.9.x. So I tried a productive and security fixes Debian Linux System running Openssl 0.9.8 and I succeeded. The wlcs accepted the certificate files and used it after a reboot. The Web GUI still shows a SHA1 Fingerprint, but the certificate signature Algorithm is SHA2:
    Signature Algorithm: sha256WithRSAEncryption
    When you check the openssl.org homepage Openssl 0.9.8 is still one of the actual version of openssl and is still available and fixed. But the Openssl Roadmap says:
    "We don't want to have to maintain too many branches. This is likely to include a timescale for the EOL of version 0.9.8"
    I don't know the differences between certificates made with openssl 0.9.8 and 1.0.1. Is there anybody who can explain it to me ?
    Regards

Maybe you are looking for

  • Iphone 5 loses signal when plugged in.

    Also, if I'm in the middle of a call as soon as it is plugged in to the charger, the microphone and speaker stops working but when it's unplugged the call can continue as normal. Any ideas why?

  • Embedded LDAP Error

    I just installed the Oracle Fusion Middleware server. The server start fines and I can get to the admin console and use it, but once I deploy the console I begin to get exceptions on the server and it pegs the processor at 100%. The expection is : <N

  • Viewing ESS (version 5) in iView of Netweaver Portal 7

    Hi,  I'm having problem in viewing our ESS Portal version 5 (i think) to Netweaver Portal 7. On Netweaver Portal 7, I have an iView connecting to our ESS portal.  But when I view it on Netweaver Portal 7, it keeps on blinking (page keeps on reloading

  • What is SDK, Runtime (player?)...

    I am on a mac and want to make a very simple .swf that lives on the desktop with a transparent background. I did that successfully but want to make sure people in the pc world can view it. So what do I have to give them as an installer. I have a pc t

  • Panoramic issues

    I seem to be having troubles taking panoramas on my iPhone 5 after this iOS 7 update. Os there something in my settings that might fix this? Like they just won't work. And I can't set panoramas as backgrounds and have them move.