How to change a setting in the Java Control Panel with command line

Hi,
I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
Edited by: 897133 on Nov 14, 2011 7:15 AM

OK figured it out. This is for the next person seeking the same solution.
When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
__deployment.config__
It should look like this inside:
*#deployment.config*
*#Mon Nov 14 13:06:38 AST 2011*
*# The First line below specifies if this config is mandatory which is simple enough*
*# The second line just tells Java where to the properties of your Java Configuration*
*# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
deployment.system.config.mandatory=True
deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
How?
Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
Add this line:
deployment.security.SSLv2Hello=true
Maybe you want to disable Java update (which is a big problem for enterprises)
Add these lines:
deployment.javaws.autodownload=NEVER
deployment.javaws.autodownload.locked=
Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
#NoTrayIcon
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseX64=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
Func _JavaConfig()
     $ConfigFile_1 = @TempDir & "\deployment.properties"
     $ConfigFile_2 = @TempDir & "\deployment.config"
     FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
     FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
     FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
     Sleep(10000)
     FileDelete(@TempDir & "\deployment.properties")
     FileDelete(@TempDir & "\deployment.config")
EndFunc
_JavaConfig()
Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
Edited by: 897133 on Nov 16, 2011 4:53 AM

Similar Messages

  • How to change the java control panel and the default java in windows.

    Hi,
    Please help on the above problem. I need the answer urgently.
    I have two java version 1.4 and 1.5. I first installed the java version 1.4.2_06 and then 1.5.0_19.Now the default java is 1.5.
    Now I want to chang the java settings to 1.4 by changing the envioronment variable (classpath,path,java_home)
    C:\Program Files\Java\jdk1.5.0_09;C:\j2sdk1.4.2_06
    C:\Program Files\Java\jdk1.5.0_09\lib;C:\j2sdk1.4.2_06\bin
    C:\Program Files\Java\jdk1.5.0_09\bin;C:\j2sdk1.4.2_06\bin
    But after setting these does not solve the problem. The java control panel which appears is the same what was appearing for java 1.5.
    I want to see the control panel for 1.4.2_06.
    Thanks for your help.
    Regards,
    Sarita

    sarita2320 wrote:
    ..Please help on the above problem. I need the answer urgently. ...Is it still urgent?
    When I opened your post and saw that line, I immediately moved it to the 'last in line' of a whole bunch of other stuff I did not have time to look at immediately. Now that all that other stuff that did not bore me with someone else's time constraints is out of the way/taken care of, I've returned to your post.

  • Websites that use java are not working. In the Java control panel, under advanced, default java for browsers "mozilla family" won't stay clicked

    I've recently gotten a new Windows 8 computer. Ever since, I've tried accessing certain websites (like www.cnet.com) and can't get the java scripts to load like for the drop down menus. When I hover over them they don't do anything. Other computers I have that run Windows 7 are working just fine.
    I've upgraded Firefox and Java to all of the newest versions but it's still not working. When I go to the Java control panel, under "Advanced" and under "Default Java for browsers", the check box next to "Mozilla family" won't stay checked. I'll check it, click "Apply" and "Ok" and then when I open it back up it's unchecked again.
    Help.

    cor-el -
    The dom.w3c_touch_events.enabled was already set to 0.
    I don't have a "dom.w3c_touch_events.expose" line. Is that something I should?

  • When I set up the cloud control panel on my pc it will not allow me to ck the option for callandor and contacts to use that feature. Therefor  my ipad callendar will not sync with the cloud

    When i set up the cloud controll panal on my pc it will not allow me to ck the box for contacts, callandor etc. There for my Ipad will not sync my callendos or contacts with the cloud

    I think you are mistaken, your ipad has no problem to sync with the cloud. Your pc however does, since you can't check the check box. So why do not you try to concentrate on that part of problem and find out why. For starters, check what happens if you disable your antivirus/firewall on your computer/network and check box again. Describe what you see and messages you get. Good luck.

  • I cannot find the Java Control Panel.

    I looked under System Preferences, and in the Utilities Folders, I did a soplight search, it is nowhere to be found. I installed JRE-7u21-macosx-x64, and it says it installed, but there's no evidence of it anywhere. I am unable to use a web start program (a ROES program) becuase it keeps telling my I need to install the JRE. The vendor I use that supplys the ROES program told me to look at the Java settings in "system preferences" but alas, it's not there.
    I am running OSX 10.8.3
    HELP!
    Greg

    Thanks Eric.. I found some terminal script that simply removed or disabled Java 7 and re-enabled Apple's Version 6, and that allowed me to launch the "Web Start" application I needed. But I will try to do the uninstall as suggested and see if that corrects things. Interestingly enough, there was an OSX update yesterday that listed Java as one of the patches, and yet it did nothing to fix the problem.

  • TS3988 When setting up the icloud control panel. I get a message saying unexpected error.

    When I try to set up the control panel on my windows vista computer, I get a message saying there was an unexpected error when I try and sync my mail.

    You must create an iCloud account using a Mac, or an IOS device. Once you have done that your PC can sign in and use it.

  • How to change font size in the message list pane (showing header lines of messages)

    The list of messages at the top of the Thunderbird window (From / Subject / etc.) uses a font that is very small and hard to read. The issue is: How can the user increase the size of the font so that it is readable?
    The platform is a Mac computer running OS X 10.9.5 with Thunderbird version 31.3.0.

    ''policyjm [[#question-1043939|said]]''
    <blockquote>
    The list of messages at the top of the Thunderbird window (From / Subject / etc.) uses a font that is very small and hard to read. The issue is: How can the user increase the size of the font so that it is readable?
    The platform is a Mac computer running OS X 10.9.5 with Thunderbird version 31.3.0.
    </blockquote>
    OK, that solution worked fine. I now have complete control of the fonts, colors, and other Thunderbird features. Thank you very much.

  • Where is the java control panel in OS 10.10

    There have been a rash of pop-ups alerting me to an important Java Update download.   Each time its download appears to be complete in the progress bar it never actually finishes and ultimately fails.   Are there any known phishing scams happening in OS 10.10 appearing as Java but actually fraudulent?   If legit, what is the work-around to get this update to succeed?

    Java SE Runtime Environment 8 1.8.25.17 is the only authorized Java plug-in for 10.10. Anything else you see is probably a scam.

  • Is there a way to call the windows control panel with Java?

    Or any of the other panels like dial-up networking, add/remove programs, etc.

    To open the Display Properties window, use:
    RunTime.exec("rundll32.exe shell32.dll,Control_RunDLL c:\windows\system\desk.cpl");Look in your systems folder for all the files ending in ".cpl" and replace desk.cpl with that filename.

  • Non-functional Java Control Panel Refuses to Disable Updates

    Hope this is the right place to post! I cannot disable updates for Java, nor change any options inside the Java Control Panel. I make changes, click OK or Apply, open it back up and find they are all unchanged. This is on Vista Home Premium, SP2, Administrator account. No where in the process is elevation requested, the UAC is on however. Does anyone have any ideas on how to correct this?
    Java 6 Standard Edition: Version 6, Update 15, build 1.6.0_15-b03.

    Thanks Assaf, while the run as admin does not show up in the Control Panel I did manage to setup a shortcut with target: "C:\Program Files\Java\jre6\bin\javaw.exe" -Xbootclasspath/a:"C:\Program Files\Java\jre6\bin\..\lib\deploy.jar" -Duser.home="C:\Users\*user*" com.sun.deploy.panel.ControlPanel that starts in: "C:\Program Files\Java\jre6\bin" which enabled me to access the run as administrator and that did change the setting correctly. Phew, thanks for the idea!

  • Java Control Panel wont open at all and any Java Applets crash web browsers

    Hello,
    I recently installed a fresh fully updated copy of Windows 7 Home Premium 64 bit, and I have not for the life of me been able to get Java working at all. Java version is the latest JRE 6U31. I only have Internet Explorer 9 installed but I doubt it is a browser issue since I cannot even open the Java control panel. I have tried using the 32 bit version of Java, and the 64 bit. Anytime I try to open the Java control panel with either 32 bit or 64 bit, I get an error message (click link below to view error message):
    http://i65.photobucket.com/albums/h204/gobigjeff/Java%20Error/javaerror.png
    I can only bring up the Java Control Panel using the command “javaws –viewer” . Anytime I try to load a web page with a Java applet in either 64 bit or 32 bit, it freezes and crashes. I am running Internet Explorer 9 and have tried both the 32 bit and 64 bit browser versions. I saw Java’s recommendation to only use the 32 bit version so I have mainly been trying to get the 32 bit version working 1st, with no success. I have tried ALL of the following steps, and have done some exhaustive research on this problem. It seems others have had this issue as well, with no solution to be found:
    •     Uninstalled and reinstalled only Java 32 bit JRE 6u31 multiple times (Used Javara and reg cleaner to remove all old Java traces)
    •     Uninstalled and reinstalled only Java 64 bit JRE 6u31 (Used Javara and reg cleaner to remove all old Java traces)
    •     Uninstalled and reinstalled bit JRE 7 (Used Javara and reg cleaner to remove all old Java traces)
    •     Used SFC /scannow in safe mode to verify Windows files
    •     Ran spyware and virus scan with no issues detected
    •     Added all java processes to windows firewall
    I am out of solutions here. If anyone has had this problem with Java or knows what I need to do to fix the problem your advice would be greatly appreciated. I don’t think reinstalling windows is the solution because this is a fresh install.
    Edited by: 918650 on Mar 4, 2012 1:16 PM

    I figured it out. I changed the installation folder to C:/Java and it finally worked!

  • How to change language setting in NI DAQ mx software ?

    Hello ,
    We just purchased the NI DAQ mx , which is done by my colleage ..
    so the software came in german even when I install ,it showed no any language selection option......
    So pls hepl me put how to change language setting in the software.
    Thanx
    Bhavin

    hello bhavin,
    DAQmx uses the operating system language settings.
    try to switch the language settings on your windows system to english, then DAQmx should also be english.
    regards,
    robert h
    NI germany

  • How to see "console output" from the java web start ?

    Hi all.
    I wish to see logging infomation from the client side when using java web start technologie (java1.6 version).
    Please help.
    Thak's

    Use the "Advanced" tab of the Java Control Panel to turn on "tracing" and/or the Java Console.
    see:
    http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/troubleshooting.03.06.html
    /Andy

  • Can't set default java for Mozilla in java control panel

    OK. It was fine before installation of SE 6u5. Now Sun java works ok in IE7 but not in Firefox 2.0.0.8. THe problem is obviously in the java control panel that sun java is set as default java for MS IE, but not Mozilla. Here is my question:
    I used to be able to tick BOTH IE and Mozilla. But now, when I tick Mozilla, it accepts but after I click yes to close the control panel and open it again, the tick i just made disappears. (So, it means not accepted as a default java) I did make new installation of Firefox for other reasons. Could it be that something has been messed up by both installations. I have tried to remove the deployment.properties and install JRE 1.6.0_5 again while Firefox is already there, but in vein. Thre is another problem that may be related. I can't use the installer downloaded from the internet. I have to use the installer available in the Documents and Settings\administrator\application data\sun\java\jre1.6.0_05 to install jre1.6.0_5.
    Environment: Windows XP pro SP2 with up-to-date Windows updates. Sun java installed: JRE 1.4.2_17, JRE1.6.0_5, and JDK 1.5.0_15.
    I need help to know what can I do to make sun java woking with my Firefox again.... Another question: can i uninstall the JRE 1.4.2_17 since I have now JRE 1.6.0_5?
    Thanks in anticipation.

    You cannot set a default value for this attribute, because by default Identity Sync sets useraccountcontrol to 512.
    You can find this default value in the configuration registry (under the ou=services tree on your configuration directory server) and change it to 514. Make sure you restart the Identity Sync services after you update the value.
    Bertold

  • Java Control Panel quit unexpectedly while using the libjvm.dylib plug-in.

    OS X Server1 0.8.4, Mac Mini (5,1), Java 7u25 (jre-7u25-macosx-x64.dmg).
    Tried removing and re-installing Java 7u25 directly from Oracle's site.  Also did a fix disk permissions, rebuilt caches, deleted java caches,  etc...  I can't simply get the Java control panel to launch.
    I have the same version running on my MacBook Air (OS X 10.8.4 w/ Java 7u25) with no issues.  Obviously something is differnet and I see a lot of complaints of various versions of Java 7 and OS X on different searches, yet no solutions.  I also tried re-installing the JavaForOSX2013-004.dmg patch, even though this shouldn't affect access to the control panel, but could block a plugin from running in the browser (which ultimately is what I'm trying to solve).
    I can't revert back to Apple's Java 6, as the Java application I'm trying to run requires Java 7.  Details of the latest crash:
    Process:         java [739]
    Path:            /usr/bin/java
    Identifier:      net.java.openjdk.cmd
    Version:         1.0 (1.0)
    Code Type:       X86-64 (Native)
    Parent Process:  bash [734]
    User ID:         501
    PlugIn Path:       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/server/libjvm.dylib
    PlugIn Identifier: libjvm.dylib
    PlugIn Version:    ??? (1)
    Date/Time:       2013-06-28 13:49:06.800 -0400
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          4229 sec
    Crashes Since Last Report:           -13
    Per-App Interval Since Last Report:  29 sec
    Per-App Crashes Since Last Report:   -13
    Anonymous UUID:                      989AE788-972D-C73F-D998-78290667FBE3
    Crashed Thread:  22  Java: Java2D Queue Flusher
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000003b0
    VM Regions Near 0x3b0:
    -->
        __TEXT                 000000010cf87000-000000010cf98000 [   68K] r-x/rwx SM=COW  /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java
    Application Specific Information:
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff9134a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff91349c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8f004233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8f009916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8f0090e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x00007fff8a201eb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x00007fff8a201c52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x00007fff8a201ae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff8c18e533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x00007fff8c18ddf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  libosxapp.dylib                         0x0000000166e70b56 -[NSApplicationAWT nextEventMatchingMask:untilDate:inMode:dequeue:] + 124
    11  com.apple.AppKit                        0x00007fff8c1851a3 -[NSApplication run] + 517
    12  libosxapp.dylib                         0x0000000166e709b9 +[NSApplicationAWT runAWTLoopWithApp:] + 156
    13  liblwawt.dylib                          0x0000000166dca13e -[AWTStarter starter:] + 1591
    14  com.apple.Foundation                    0x00007fff8e31c5ca __NSThreadPerformPerform + 225
    15  com.apple.CoreFoundation                0x00007fff8efe6b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  com.apple.CoreFoundation                0x00007fff8efe6455 __CFRunLoopDoSources0 + 245
    17  com.apple.CoreFoundation                0x00007fff8f0097f5 __CFRunLoopRun + 789
    18  com.apple.CoreFoundation                0x00007fff8f0090e2 CFRunLoopRunSpecific + 290
    19  java                                    0x000000010cf8e42d CreateExecutionEnvironment + 871
    20  java                                    0x000000010cf88bdc JLI_Launch + 1952
    21  java                                    0x000000010cf8e78a main + 101
    22  java                                    0x000000010cf88434 start + 52
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff9134c386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff862a1cbd pthread_join + 847
    2   java                                    0x000000010cf8da2d ContinueInNewThread0 + 102
    3   java                                    0x000000010cf89847 ContinueInNewThread + 201
    4   java                                    0x000000010cf8d790 JVMInit + 251
    5   java                                    0x000000010cf895c5 JLI_Launch + 4489
    6   java                                    0x000000010cf8e78a main + 101
    7   java                                    0x000000010cf8e0bf apple_main + 92
    8   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d465109 ObjectMonitor::wait(long long, bool, Thread*) + 627
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6158 0 + 4526399832
    9   ???                                     0x000000010dcb6158 0 + 4526399832
    10  ???                                     0x000000010dcb6158 0 + 4526399832
    11  ???                                     0x000000010dcb6158 0 + 4526399832
    12  ???                                     0x000000010dcb6333 0 + 4526400307
    13  ???                                     0x000000010dcb6158 0 + 4526399832
    14  ???                                     0x000000010dcb6158 0 + 4526399832
    15  ???                                     0x000000010dcb04f7 0 + 4526376183
    16  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    17  libjvm.dylib                            0x000000010d33f390 JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) + 40
    18  libjvm.dylib                            0x000000010d4aec06 Reflection::invoke(instanceKlassHandle, methodHandle, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, Thread*) + 2514
    19  libjvm.dylib                            0x000000010d4aeed9 Reflection::invoke_constructor(oopDesc*, objArrayHandle, Thread*) + 417
    20  libjvm.dylib                            0x000000010d373b0e JVM_NewInstanceFromConstructor + 124
    21  ???                                     0x000000010dcc1f90 0 + 4526448528
    22  ???                                     0x000000010dcb6333 0 + 4526400307
    23  ???                                     0x000000010dcb6333 0 + 4526400307
    24  ???                                     0x000000010dcb69e1 0 + 4526402017
    25  ???                                     0x000000010dcb6333 0 + 4526400307
    26  ???                                     0x000000010dcb6333 0 + 4526400307
    27  ???                                     0x000000010dcb6333 0 + 4526400307
    28  ???                                     0x000000010dcb6333 0 + 4526400307
    29  ???                                     0x000000010dcb6333 0 + 4526400307
    30  ???                                     0x000000010dcb6158 0 + 4526399832
    31  ???                                     0x000000010dcb6158 0 + 4526399832
    32  ???                                     0x000000010dcb6158 0 + 4526399832
    33  ???                                     0x000000010dcb6158 0 + 4526399832
    34  ???                                     0x000000010dcb6158 0 + 4526399832
    35  ???                                     0x000000010dcb6158 0 + 4526399832
    36  ???                                     0x000000010dcb04f7 0 + 4526376183
    37  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    38  libjvm.dylib                            0x000000010d33f390 JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) + 40
    39  libjvm.dylib                            0x000000010d35ae70 jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*) + 219
    40  libjvm.dylib                            0x000000010d3541c8 jni_CallStaticVoidMethod + 267
    41  java                                    0x000000010cf8a17e JavaMain + 2333
    42  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    43  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    4   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    5   libjvm.dylib                            0x000000010d562b00 VMThread::loop() + 444
    6   libjvm.dylib                            0x000000010d56261b VMThread::run() + 121
    7   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    8   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 8:: Java: Reference Handler
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d465109 ObjectMonitor::wait(long long, bool, Thread*) + 627
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6158 0 + 4526399832
    9   ???                                     0x000000010dcb04f7 0 + 4526376183
    10  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    11  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    12  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    13  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    14  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    15  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    16  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    17  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 9:: Java: Finalizer
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d465109 ObjectMonitor::wait(long long, bool, Thread*) + 627
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6333 0 + 4526400307
    9   ???                                     0x000000010dcb6333 0 + 4526400307
    10  ???                                     0x000000010dcb04f7 0 + 4526376183
    11  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    12  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    13  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    14  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    15  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    16  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    17  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    18  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    19  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 11:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff9134cd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff9181cdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff9181c9ee _dispatch_mgr_thread + 54
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 13:: Java: Signal Dispatcher
    0   libsystem_kernel.dylib                  0x00007fff9134a6c2 semaphore_wait_trap + 10
    1   libjvm.dylib                            0x000000010d46ce57 check_pending_signals(bool) + 128
    2   libjvm.dylib                            0x000000010d469994 signal_thread_entry(JavaThread*, Thread*) + 57
    3   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    4   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    5   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    6   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 14:: Java: C2 CompilerThread0
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e5c6 Monitor::wait(bool, long, bool) + 222
    6   libjvm.dylib                            0x000000010d23d281 CompileQueue::get() + 153
    7   libjvm.dylib                            0x000000010d23dda2 CompileBroker::compiler_thread_loop() + 410
    8   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    9   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    10  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    11  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    12  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 15:: Java: C2 CompilerThread1
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e5c6 Monitor::wait(bool, long, bool) + 222
    6   libjvm.dylib                            0x000000010d23d281 CompileQueue::get() + 153
    7   libjvm.dylib                            0x000000010d23dda2 CompileBroker::compiler_thread_loop() + 410
    8   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    9   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    10  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    11  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    12  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 16:: Java: Service Thread
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d4bd249 ServiceThread::service_thread_entry(JavaThread*, Thread*) + 109
    7   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    8   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    9   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    10  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    11  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d532d06 WatcherThread::run() + 328
    4   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    5   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 21:: Java: traceMsgQueueThread
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d465113 ObjectMonitor::wait(long long, bool, Thread*) + 637
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6806 0 + 4526401542
    9   ???                                     0x000000010dcb04f7 0 + 4526376183
    10  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    11  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    12  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    13  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    14  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    15  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    16  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    17  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 22 Crashed:: Java: Java2D Queue Flusher
    0   libsystem_kernel.dylib                  0x00007fff9134c212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff86218b54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8625cdce abort + 143
    3   libjvm.dylib                            0x000000010d46e0d7 os::abort(bool) + 25
    4   libjvm.dylib                            0x000000010d55d020 VMError::report_and_die() + 2306
    5   libjvm.dylib                            0x000000010d46f7cb JVM_handle_bsd_signal + 1073
    6   libsystem_c.dylib                       0x00007fff8620594a _sigtramp + 26
    7   libGL.dylib                             0x00007fff911f78b5 glGetString + 15
    8   liblwawt.dylib                          0x0000000166dc069f Java_sun_java2d_opengl_OGLContext_getOGLIdString + 35
    9   ???                                     0x000000010dcc1f90 0 + 4526448528
    10  ???                                     0x000000010dcb6333 0 + 4526400307
    11  ???                                     0x000000010dcb6806 0 + 4526401542
    12  ???                                     0x000000010dcb04f7 0 + 4526376183
    13  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    14  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    15  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    16  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    17  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    18  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    19  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    20  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    21  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 23:: Java: AWT-Shutdown
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d465113 ObjectMonitor::wait(long long, bool, Thread*) + 637
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6806 0 + 4526401542
    9   ???                                     0x000000010dcb04f7 0 + 4526376183
    10  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    11  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    12  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    13  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    14  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    15  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    16  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    17  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 22 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000166f920a8  rdx: 0x0000000000000000
      rdi: 0x0000000000009207  rsi: 0x0000000000000006  rbp: 0x0000000166f920d0  rsp: 0x0000000166f920a8
       r8: 0x00007fff74b56278   r9: 0x0000000166f92080  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x000000010d8011f0  r13: 0x000000011118eca8  r14: 0x0000000166f93000  r15: 0x000000010d4716bc
      rip: 0x00007fff9134c212  rfl: 0x0000000000000206  cr2: 0x00007fff74b4fff0
    Logical CPU: 0
    Binary Images:
           0x10cf87000 -        0x10cf97fff +java (1.0 - 1.0) <147BD4EA-EA9C-301B-8C8A-D9F271391735> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java
           0x10d0b5000 -        0x10d740fef +libjvm.dylib (1) <1B03A29F-0248-337E-8529-87706B48A7DE> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/server/libjvm.dylib
           0x10dc61000 -        0x10dc69fff +libverify.dylib (1) <C42EBBF2-FDE6-342B-9B75-7D91194E47C1> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libverify.dylib
           0x10dc6e000 -        0x10dc8ffef +libjava.dylib (1) <CEC400ED-E3D2-343D-8E19-587A4FF75CC2> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libjava.dylib
           0x10dca7000 -        0x10dcacfff +libzip.dylib (1) <89DD8E8C-F4A4-3E92-A2D6-CC8642447AC3> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libzip.dylib
           0x166560000 -        0x166569ff7  com.apple.java.JavaRuntimeSupport (14.8.0 - 14.8.0) <A08E8799-F5FF-3CBB-A753-FC2AF260ABEB> /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.frame work/JavaRuntimeSupport
           0x166578000 -        0x166582fff  JavaNativeFoundation (1) <F1FE02AF-1A2C-3EF7-9D1A-312FA21B51B9> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFou ndation.framework/Versions/A/JavaNativeFoundation
           0x16658d000 -        0x166592fff  com.apple.JavaVM (14.8.0 - 14.8.0) <83C8C2AB-E99D-39FF-80B4-90A7DEB1DAFB> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
           0x16659a000 -        0x16659ffff  JavaLaunching (1) <E89BD701-1C4E-3A44-8C32-6F81D2B53D13> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
           0x166c40000 -        0x166cacff7 +libawt.dylib (1) <614FC193-CE14-3B85-9F8B-33F92FBD6D92> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libawt.dylib
           0x166cf0000 -        0x166db5fff +libmlib_image.dylib (1) <95F6D0B2-3A92-305F-A6AE-822BC990901B> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libmlib_image.dylib
           0x166dbc000 -        0x166e2cff7 +liblwawt.dylib (1) <8004F9F2-4EDF-3FF4-8B40-12F06C5C97FA> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/lwawt/liblwawt.dylib
           0x166e6f000 -        0x166e75fff +libosxapp.dylib (1) <19D025A3-9368-319D-AA64-EF835D78A0FF> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libosxapp.dylib
           0x166e8b000 -        0x166e8dfff  com.apple.ExceptionHandling (1.5 - 10) <47FF83ED-0C07-308C-A375-2A2189DB1056> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
           0x1682f6000 -        0x168300fff +libjli.dylib (1) <9792ED7A-1BD0-3D84-B551-F5DA12537016> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jli/libjli.dylib
           0x168fe1000 -        0x168ff9ff7 +libdeploy.dylib (0) <7E7F2C41-877D-36FC-B982-DE5BB8F1685B> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libdeploy.dylib
           0x169007000 -        0x169010fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x16a8f0000 -        0x16a907fff +org.andymatuschak.Sparkle (1.5 Beta 6 - 313) <9253F8F7-250B-1114-7AE9-A10A54EB2298> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Frameworks/Sparkle.framework/Versions /A/Sparkle
           0x16a920000 -        0x16a9f9ff7  libcrypto.0.9.7.dylib (106) <3E1B14DE-342B-318C-8F22-7B9CD88EE760> /usr/lib/libcrypto.0.9.7.dylib
           0x16ac56000 -        0x16ae14fff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x16ae4b000 -        0x16afbbfff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x16aff3000 -        0x16b3b0ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x16b4e0000 -        0x16b4edfff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x16b4f4000 -        0x16b51ffff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff6cb87000 -     0x7fff6cbbb93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff84946000 -     0x7fff84947fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff849e8000 -     0x7fff84a2bff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff84a2c000 -     0x7fff84aaeff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff84aaf000 -     0x7fff84ad7fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff84ad8000 -     0x7fff84adafff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84b04000 -     0x7fff84c56fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff850e0000 -     0x7fff8517bfff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8521c000 -     0x7fff854c0ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff859d7000 -     0x7fff85a33ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff85a34000 -     0x7fff85a35ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff85a40000 -     0x7fff85a43ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff85a44000 -     0x7fff85a46fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff85a47000 -     0x7fff85a55ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff86203000 -     0x7fff862cfff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff862d0000 -     0x7fff862d4ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff862e4000 -     0x7fff8633efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8633f000 -     0x7fff86340ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff86341000 -     0x7fff8636fff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff86370000 -     0x7fff8640afff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8640b000 -     0x7fff8641ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86420000 -     0x7fff86451ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff864dd000 -     0x7fff86517ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff86578000 -     0x7fff865cefff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff865db000 -     0x7fff86648ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86649000 -     0x7fff8664bff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8664c000 -     0x7fff86765fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff86790000 -     0x7fff8682eff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8685f000 -     0x7fff8695cff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff86a7f000 -     0x7fff8740f4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff87410000 -     0x7fff874d5ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8797b000 -     0x7fff8799aff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff879d8000 -     0x7fff879ffff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff87bcd000 -     0x7fff87ccffff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff87cd0000 -     0x7fff87cd4fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87cd5000 -     0x7fff87d01ff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff87de8000 -     0x7fff881dffff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff881e0000 -     0x7fff881eeff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff881ef000 -     0x7fff88210fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff88211000 -     0x7fff88251ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff885f2000 -     0x7fff887f2fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff887f4000 -     0x7fff888c6ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88b23000 -     0x7fff88b8cfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff88b91000 -     0x7fff88bbcfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff88bcb000 -     0x7fff88c17ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff88c18000 -     0x7fff88c39ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff88c3a000 -     0x7fff88c42ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88c47000 -     0x7fff88c54fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff88c84000 -     0x7fff88cb2fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff88cb3000 -     0x7fff88cb6fff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff88cb7000 -     0x7fff88cb7fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88cb8000 -     0x7fff88cc6fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff88d35000 -     0x7fff88d35fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff88e61000 -     0x7fff88e68fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff88e6b000 -     0x7fff88e82fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff88e83000 -     0x7fff89031fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89092000 -     0x7fff8909afff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8909b000 -     0x7fff890f5ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff890f6000 -     0x7fff890f8fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff890f9000 -     0x7fff89138ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89139000 -     0x7fff89147fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff89153000 -     0x7fff89158fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff891b6000 -     0x7fff891b7fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff891b8000 -     0x7fff89220fff  l

    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac

Maybe you are looking for