Error Using java command. Please help!

Ok, I'm having problems running my java programs. I use the javac command, and it compiles it right, and makes the class file. But if I type
java anything
It won't work. It comes up with the error message:
Exception in thread "main" java.lang.NoClassDefFoundError: BigDebt
With BigDebt as the class file. That error message comes up if I type:
java anything
java blah.class
I have version 1.3.
It would be GREATLY appreciated if someone could help.

It appears you are using the right command, "java BigDebt" if your class is called BigDebt and the compiler produced a file named BigDebt.class. (This assumes that your source code doesn't start with a "package xxx;" line.) Your problem is likely a Classpath problem. Make sure you have CD'd to the directory where BigDebt is located. Then try:
java -classpath . BigDebt

Similar Messages

  • Error using "java" command

    I've just started trying to learn java and what is really ticking me off is that I can't get my applications to run. I use the "javac" command and it works just fine so I can get applets to work but when I use "java" to run applications I get the error message:
    "Exception in thread "main" java.lang.NoClassDefFoundError: "(class name)
    I've gone back through and checked my environmental variables and paths but get the same results. I've also tried with two versions of the SDK,
    1.2.2 and 1.4.1 and I still get the same results.
    Anyone PLEASE help, I need to get farther in learning Java!

    My First Java Program (for Windows)
    Follow these steps:
    1. Download and install the Java 2 SDK
    2. Make sure your path and classpath are set correctly
    3. Type in your first program
    4. Compile your first program
    5. Run your first program
    6. Read the Java tutorial
    1. Download and install the Java 2 SDK
    Go to the Java website and download the Java 2 SDK, Standard Edition:
    http://java.sun.com/j2se/1.4.1/download.html
    NOTE: Make sure you download the SDK (leftmost column) and not just the JRE. The JRE (Java Runtime Environment) only contains the stuff necessary to run Java programs, and not the compiler and other tools you need to develop Java programs.
    After downloading, run the installation program to install the Java 2 SDK.
    2. Make sure your path and classpath are set correctly
    After installing, READ THE INSTALLATION NOTES! Lots of people get in trouble and are asking questions in the forums because they were too lazy to read and follow the installation notes. Especially, after installing the Java 2 SDK you need to add the 'bin' directory of the SDK to your PATH, otherwise you will get an error like "javac is not recognized as an internal or external command" or something similar.
    If you've installed the Java 2 SDK in C:\j2sdk1.4.1_03, add C:\j2sdk1.4.1_03\bin to the PATH. How you should do this for different versions of Windows is described in the installation notes: http://java.sun.com/j2se/1.4.1/install-windows.html
    If you are using a version of the Java 2 SDK older than 1.4, you need to add the current directory (".") to the CLASSPATH environment variable. CLASSPATH is where Java looks for *.class files (compiled Java classes). Since Java 1.4, Java looks in the current directory automatically if the CLASSPATH isn't set, so you don't need to add "." to the CLASSPATH. Again, the installation notes explain what CLASSPATH is and how you should set it.
    3. Type in your first program
    Start Notepad and type in your first program:
    public class HelloWorld {
        public static void main(String[] args) {
            System.out.println("Hello World");
    }NOTE: Java is case-sensitive. Be careful to type in the program exactly as shown above. Don't type "Helloworld" or "helloworld" or anything else.
    Save the file somewhere in a file called "HelloWorld.java". NOTE: Again, the case must be correct. Even though Windows is case-insensitive for filenames, the case must be correct, because Java is case-sensitive. Also watch out that Notepad doesn't append ".txt" to the filename (so that you end up with a file called "HelloWorld.java.txt"). To make things worse, Windows Explorer hides file extensions by default so you don't even see that the file is actually called "HelloWorld.java.txt" instead of "HelloWorld.java".
    4. Compile your first program
    Open a command prompt, CD to the directory that contains your source file and type:
    javac HelloWorld.java
    NOTE: Again, the case must be exactly right.
    If all goes well, you'll not get any error messages and a file "HelloWorld.class" is generated.
    5. Run your first program
    To run your program, type:
    java HelloWorld
    NOTE: Don't type "HelloWorld.class". You are specifying the class name here, not the filename. Ofcourse, the case is important again.
    6. Read the Java tutorial
    Go to the Java website and follow The Java Tutorial:
    http://java.sun.com/docs/books/tutorial/
    The chapter "Your First Cup of Java" also explains in detail how to start with Java.
    Jesper

  • Datacapturing using Java Bean (Please help)

    I am stressed with this projeject. The stage I am at right now is that I want to capture some parameters from a posted form in my bean and send it to the database.
    Can anyone please help with advice.

    Here is the methos used to insert it did not work
    public String insertSkills_Developer() {
    try {
    // load the driver
    // create the connection
    // create the statement
         Stmt = C.createStatement();
    // create the sql to execute and execute
    String[] skill_dev_array = this. getDev_id();
    String[] skill_sets_array = this.getSkills_sets();
    int counter = 0;
    for(int i=0;i<skill_sets_array.length;i++)
    String insert_skill = "INSERT INTO ADEBAYO.DEV_SKILLS (dev_id, skill_id, skilled, interested, deliver_session, description) VALUES (" + this.getDev_id() +'","' + skill_sets_array'","' + this.getSkilled_id() + "','" + this.getSkills_ptp() + "','" + this.getSkill_ta() + "','" + this.getDescription() + "')";
    int stmtInt_2 = Stmt.executeUpdate(insert_skill);
    System.out.println("SQL COMMAND " + insert_skill);
    counter++;
         System.out.println("Inserted row " + counter);
    return "Inserted rows " + counter;
    } catch (SQLException E) {
         System.out.println(E);
         return "SQLException: " + E.getMessage();
    } catch (Exception e) {
         e.printStackTrace();
    return e.getMessage();
    } finally {
    // ALWAYS, ALWAYS close the connections to the db
    try {
    Stmt.close();
    C.close();
    } catch (Exception E) {
    E.printStackTrace();

  • SQL*PLUS using START command - please help me to understand

    Hello dear friends,
    I met one issue that i can't understand. Could you please explain me what is wrong in my logic.
    I have created sql file called DUMMY.sql
    the file context is:
    SELECT dummy
    FROM dummy_tbl
    WHERE dummy_col=&dummy_var;
    I go to SQL*Plus DB version (10.2.0.4.0).
    I promt command: START DUMMY 1
    and expecting *&dummy_var* to be replaced with *1* and query be executed as it is described in Oracle SQL*PLUS reference ([http://download-west.oracle.com/docs/cd/B12037_01/server.101/b12170/ch6.htm#sthref1058|http://download-west.oracle.com/docs/cd/B12037_01/server.101/b12170/ch6.htm#sthref1058] ).
    But instead i'm getting Enter value for dummy_var:
    please help me to understand
    thanks in advance.

    You need to use &1 instead of &dummy_var.
    The number references the position of the parameter to use;&1 is the first parameter, &2 would be a second parameter and so on.
    SELECT dummy
    FROM dummy_tbl
    WHERE dummy_col=&1;

  • Error "Bridge CS6 was not found on this system. To use this command, please reinstall Bridge CS6"

    Hi all,
    We are having issues with Adobe Bridge working properly with Photoshop.  When trying to access Bridge through Photoshop we receive the following error "Bridge CS6 was not found on this system.  To use this command, please reinstall Bridge CS6"
    - We have the Master Collection CS6 installed
    - Bridge CS6 is working fine as a stand-alone program
    - This is installed on Windows 7 x64
    - I am unable to find an uninstall location for Bridge CS6, it is not under control panel > Adobe Master Suite
    - All adobe products are up-to-date as of this morning.
    Any help would be appreciated.
    Thanks,
    Message title was edited by: Brett N

    Bacterin1 wrote:
    It has not worked previously.
    Does not make a difference is bridge is open or not.
    Yes, we are accessing it through File/browse in bridge.
    OK, back to square 1.
    Does Bridge work normally?  Does it load Bridge CS6 or does CS5 come up?  Only one version can run at same time.
    If you double click on an image it opens in CS6?

  • HT201263 Hi. I forgot my passcode and now I am unable to unlock my ipod. I tried restoring it using itunes in recovery mode as well as dfu mode but it says unable to restore,unknown error occured (3004).  Please help me out. My ipod is locked for one hour

    Hi. I forgot my passcode and now I am unable to unlock my ipod. I tried restoring it using itunes in recovery mode as well as dfu mode but it says unable to restore,unknown error occured (3004).  Please help me out. My ipod is locked for one hour now.

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • Windows thinks my itouch is a camera and itunes says this ipod can't be used because the software isn't installed - reinstall itunes.  i've done that and continue to get the same error.  can someone please help?

    windows thinks my itouch is a camera and itunes says this ipod can't be used because the software isn't installed - reinstall itunes.  i've done that and continue to get the same error.  can someone please help?

    (apologies for barging in, lllass.)
    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, does your device connect without that message now?

  • Why I can't update my ios to ios6? It always display that..Error in updating..I am using ipad3. Please help me update my ios. Looking forward for your kind support and cooperation. Thank you.

    Why I can't update my ios to ios6? It always display that..Error in updating..I am using ipad3. Please help me update my ios. Looking forward for your kind support and cooperation. Thank you.

    Why I can't update my ios to ios6? It always display that..Error in updating..I am using ipad3. Please help me update my ios. Looking forward for your kind support and cooperation. Thank you.

  • Dehydration failed with error: Use introspectWLS12 command to introspect domains

    Hello Experts,
    I am trying to Introspect my Oracle weblogic server Locally to configure appliances on my assembly in Virtual Assembly Builder using command
    # ./abctl introspectWLS -wlsHome /home/punit/Oracle/Infra/wlserver -domainRoot /home/punit/Oracle/Infra/user_projects/domains/base_domain -adminUser weblogic
    but it is getting failed with error:
    Use introspectWLS12 command to introspect domains based on WLS 12.1.2 and younger..
    Error:  OAB-7105: Introspection failed.
    Caused by: Dehydrate job failed.
    Caused by:  OAB-50008: Use introspectWLS12 command to introspect domains based on WLS 12.1.2 and younger.
    later I replaced introspectWLS with introspectWLS12  but its throwing   Usage error: Command not found: introspectWLS12.
    Can somebody help me in finding the exact command for version 12.1.2 to by-pass this..
    FYI: I am using fmw_Infra_121200_OVAB.jar binnary  bundled with JRF & FM Components on my OEL-6.0 platform
    Thanks in Advance
    Punit

    Hi,
    Thanks for your reply.
    This icon you provided means "the DHCP server connected but current user does not have the administrative credentials to manage the server."
    That's why "0x80070005. Access is denied" is received.
    DHCP console icons reference
    http://technet.microsoft.com/en-us/library/cc784812(WS.10).aspx
    So, you need to make sure the current user have the administrative credentials to configure DHCP server. Usually members of the DHCP Administrators
    group can view and modify any data at the DHCP server. DHCP Administrators can create and delete scopes, add reservations, change option values, create superscopes, or perform any other activity needed to administer the DHCP server, including export or import
    of the DHCP server configuration and database. DHCP Administrators perform these tasks using the Netsh commands for DHCP or the DHCP console. For more information, see
    DHCP tools.
    DHCP groups
    http://technet.microsoft.com/en-us/library/cc737716(WS.10).aspx
    Hope this helps.
    Thanks,
    Robbin Meng
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked
    post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Error trying to Deply - Please Help!!

    I'm getting the following error while trying to deploy my
    EJBs using JRun 3.1 on my XP pc.
    Exception: [15:24:29] java.io.IOException: CreateProcess:
    javac -classpath
    c:/JRun/3.1/servers/default/deploy/lib;c:/JRun/3.1/servers/default/deploy/mtrack.jar;lib/ ejipt.jar;.;H:/eclipse/workspace/lib/j2ee.jar;c:/JRun/3.1/lib/ejipt.jar;H:/eclipse/workspa ce/lib/jdom.jar;H:/eclipse/workspace/lib/xerces.jar;H:/eclipse/wor
    kspace/lib/ext/commons-fileupload-1.1.jar;c:/JRun/3.1/servers/lib/ojdbc14.jar;H:/eclipse/w orkspace/lib/mtrack.jar;c:/JRun/3.1/lib/install.jar;c:/JRun/3.1/lib/xt
    .jar;c:/JRun/3.1/lib/jrun.jar;c:/JRun/3.1/lib/jsp.jar;c:/JRun/3.1/lib/jsprt.jar;c:/JRun/3. 1/lib/rhino.jar;c:/JRun/3.1/lib/ssi.jar;c:/JRun/3.1/lib/default_export
    s.jar;c:/JRun/3.1/lib/default_objects.jar;c:/JRun/3.1/lib/ejipt.jar;c:/JRun/3.1/lib/ejipt_ ejbeans.jar;c:/JRun/3.1/lib/ejipt_jms.jar;c:/JRun/3.1/lib/ejipt_tools.
    jar;c:/JRun/3.1/lib/ejipt_client.jar -d
    c:/JRun/3.1/servers/default/deploy/lib
    @c:/JRun/3.1/servers/default/deploy/src/list error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Unknown Source)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at
    allaire.ejipt.tools.Deploy._compileFiles(allaire/ejipt/tools/Deploy.java:700)
    at
    allaire.ejipt.tools.Deploy.redeployJars(allaire/ejipt/tools/Deploy.java:236)
    at
    allaire.ejipt.tools.Deploy.deployJars(allaire/ejipt/tools/Deploy.java:184)
    at
    allaire.ejipt.tools.Deploy.main(allaire/ejipt/tools/Deploy.java:163)
    Please help!
    Thanks
    Pratim

    "Error writing to file: C:\Program Files\Common Files\Apple\Mobile Device Support\AppleMobileDeviceHelper.exe. Verify that you have access to that directory."
    Most commonly, it's caused by disk or file damage, J.
    Let's first try running a chkdsk over your C drive. There's Windows 7 instructions in the following document. Select both "automatically fix file system errors" and "scan for and attempt recovery of bad sectors" or use chkdsk /r (depending on which way you choose to go about things). You should be prompted to schedule the scan to run on restart. That sort of scan of the C drive should take a long time ... if it quits after a few minutes or seconds, something's interfering with the scan:
    [How to use CHKDSK (Check Disk)|http://www.w7forums.com/use-chkdsk-check-disk-t448.html]
    Does the chkdsk find/repair any damage? If so, try another iTunes install. Does it go through properly this time?

  • Kernel_task using 1600% CPU, please help

    After updating to yosemite (nightmare) my Mid 2011 macbook air has been running ridiculously slow.
    Activity monitor is telling me that kernel_task is using huge amounts (always over 100%) of CPU
    The only way i can get my computer to function at a normal speed is using Safe boot
    Please help!

    I seem to have the same issue ever since the Yosemite update. It's eating up my memory and battery. I see some kernel extension errors. Here's my report, please advise.
    Start time: 01:12:03 02/13/15
    Model Identifier: MacBookPro8,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 4 minutes
    Memory
        BANK 0/DIMM0:
          Size: 4 GB
          Speed: 1333 MHz
          Status: OK
          Manufacturer: 0x859B
        BANK 1/DIMM0:
          Size: 4 GB
          Speed: 1333 MHz
          Status: OK
          Manufacturer: 0x859B
    Battery
       Condition: Service Battery
    SerialATA
       Hitachi HTS545032B9A302                
    Diagnostic reports
       2015-02-13 VShieldScanManager crash x5
       2015-02-13 VShieldUpdate crash x20
    Shutdowns
       Feb 10 13:22:59 cause: -60
       Feb 11 22:59:50 cause: -60
    Log
       Feb 12 19:24:42 com.apple.xpc.launchd.domain.pid.MediaLibraryService.11209: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Feb 12 19:24:42 com.apple.xpc.launchd.domain.pid.MediaLibraryService.11209: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Feb 12 23:06:48 wl0: Beacon Loss Event
       Feb 12 23:47:41 com.apple.xpc.launchd.domain.pid.quicklookd.16534: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd. app
       Feb 12 23:56:30 com.apple.iTunesHelper.5996: Service exited with abnormal code: 1
       Feb 12 23:57:26 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Feb 12 23:59:36 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Feb 13 00:01:00 com.apple.spindump: Service exited with abnormal code: 75
       Feb 13 00:01:42 com.symantec.uiagent.application: Service setup event to handle failure and will not launch until it fires.
       Feb 13 00:01:42 com.freenet.startup.plist: Service setup event to handle failure and will not launch until it fires.
       Feb 13 00:01:43 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.370: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Feb 13 00:01:43 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.370: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Feb 13 00:07:52 com.apple.xpc.launchd.domain.pid.quicklookd.519: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd. app
       Feb 13 00:14:46 com.apple.iTunesHelper.5996: Service exited with abnormal code: 1
       Feb 13 00:15:32 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Feb 13 00:16:26 com.freenet.startup.plist: Service setup event to handle failure and will not launch until it fires.
       Feb 13 00:16:26 com.symantec.uiagent.application: Service setup event to handle failure and will not launch until it fires.
       Feb 13 00:16:37 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.321: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Feb 13 00:16:37 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.321: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Feb 13 01:07:49 com.apple.iTunesHelper.5996: Service exited with abnormal code: 1
       Feb 13 01:08:33 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Feb 13 01:09:23 com.freenet.startup.plist: Service setup event to handle failure and will not launch until it fires.
       Feb 13 01:09:23 com.symantec.uiagent.application: Service setup event to handle failure and will not launch until it fires.
       Feb 13 01:09:28 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.317: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Feb 13 01:09:28 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.317: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
    Activity
       CPU: user 23%, system 11%
    CPU per process: Folder Actions D (UID 501) is using 93.9 percent
    Bad kernel extensions
       /System/Library/Extensions/BJUSBLoad.kext
       Warnings:
       Personality CFBundleIdentifier differs from containing kext's (not necessarily a mistake, but rarely done):
       IJ108a
       IJ10cd
       IJ1723
       IJ1082
       IJ10c5
       IJ1729
       IJ1088
       IJ10bb
       IJ174a
       IJ107e
       IJ1070
       IJ10b3
       IJ1717
       IJ1742
       IJ1076
       IJ10b9
       IJ1748
       IJ170d
       IJ10af
       IJ10a1
       IJ173e
       IJ109d
       IJ1705
       IJ1064
       IJ1730
       IJ10d2
       IJ10a7
       IJ1736
       IJ1095
       IJ172c
       IJ108b
       IJ1724
       IJ1083
       IJ10c6
       IJ171a
       IJ10bc
       IJ174b
       IJ1712
       IJ107f
       IJ10b4
       IJ1718
       IJ1743
       IJ1077
       IJ10aa
       IJ1749
       IJ170e
       IJ1700
       IJ106d
       IJ10a2
       IJ173f
       IJ109e
       IJ1706
       IJ1065
       IJ1090
       IJ10d3
       IJ1731
       IJ10a8
       IJ1737
       IJ1096
       IJ172d
       IJ108c
       IJ10cf
       IJ10c1
       IJ1725
       IJ1084
       IJ10c7
       IJ171b
       IJ107a
       IJ10bd
       IJ1713
       IJ1072
       IJ10b5
       IJ1719
       IJ1078
       IJ173a
       IJ1701
       IJ106e
       IJ1732
       IJ109f
       IJ1091
       IJ1707
       IJ10a9
       IJ1097
       IJ10ca
       IJ172e
       IJ108d
       IJ10c2
       IJ1726
       IJ1085
       IJ10c8
       IJ171c
       IJ107b
       IJ10be
       IJ10b0
       IJ1714
       IJ1073
       IJ10b6
       IJ170a
       IJ1079
       IJ173b
       IJ109a
       IJ1061
       IJ10a4
       IJ1708
       IJ1733
       IJ1067
       IJ10d5
       IJ1098
       IJ172f
       IJ1721
       IJ108e
       IJ1080
       IJ1055
       IJ10c3
       IJ1727
       IJ1086
       IJ10c9
       IJ107c
       IJ10bf
       IJ10b1
       IJ1740
       IJ1715
       IJ1074
       IJ10b7
       IJ1746
       IJ170b
       IJ106a
       IJ173c
       IJ109b
       IJ10a5
       IJ10d0
       IJ1709
       IJ1734
       IJ1068
       IJ1093
       IJ10d6
       IJ1099
       IJ108f
       IJ1722
       IJ1056
       IJ1081
       IJ10c4
       IJ1728
       IJ1087
       IJ10ba
       IJ107d
       IJ1710
       IJ1716
       IJ1741
       IJ1747
       IJ170c
       IJ106b
       IJ10a0
       IJ173d
       IJ109c
       IJ1063
       IJ10a6
       IJ10d1
       IJ1735
       IJ1069
       IJ1094
       IJ172b
       Kext has no executable or compatible version, so it should not declare any OSBundleLibraries.
       Dependency Resolution Failures:
       No kexts found for these libraries:
       com.apple.kernel.libkern
       /System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/ACPI_SM C_PlatformPlugin.kext
       Authentication Failures:
       File owner/permissions are incorrect (must be root:wheel, nonwritable by group/other):
       iMac10_1.plist
       iMac11_1.plist
       iMac11_2.plist
       iMac11_3.plist
       iMac12_1.plist
       iMac12_2.plist
       iMac8_1.plist
       iMac9_1.plist
       MacBook1_1.plist
       MacBook2_1.plist
       MacBook3_1.plist
       MacBook4_1.plist
       MacBook5_1.plist
       MacBook5_2.plist
       MacBook6_1.plist
       MacBook7_1.plist
       MacBookAir1_1.plist
       MacBookAir2_1.plist
       MacBookAir3_1.plist
       MacBookAir3_2.plist
       MacBookAir4_1.plist
       MacBookAir4_2.plist
       MacBookPro1_1.plist
       MacBookPro1_2.plist
       MacBookPro2_1.plist
       MacBookPro2_2.plist
       MacBookPro3_1.plist
       MacBookPro4_1.plist
       MacBookPro5_1.plist
       MacBookPro5_2.plist
       MacBookPro5_3.plist
       MacBookPro5_4.plist
       MacBookPro5_5.plist
       MacBookPro6_1.plist
       MacBookPro6_2.plist
       MacBookPro7_1.plist
       MacBookPro8_1.plist
       MacBookPro8_2.plist
       MacBookPro8_3.plist
       Macmini3_1.plist
       Macmini4_1.plist
       Macmini5_1.plist
       Macmini5_2.plist
       Macmini5_3.plist
       MacPro1_1.plist
       MacPro2_1.plist
       MacPro3_1.plist
       MacPro4_1.plist
       MacPro5_1.plist
       Xserve3_1.plist
    Loaded kernel extensions
       com.Cycling74.driver.Soundflower (1.5.1)
       com.jft.driver.PdaNetDrv (1.0.64)
    Daemons
       com.adobe.fpsaud
       com.apple.Kerberos.kdc
       - status: 1
       com.barebones.authd
       com.cleverfiles.cfbackd
       - status: 78
       com.google.keystone.daemon
       com.mcafee.ssm.Eupdate
       - status: -5
       com.mcafee.ssm.ScanManager
       - status: -5
       com.microsoft.office.licensing.helper
       com.oracle.java.Helper-Tool
       com.symantec.avscandaemon
       com.symantec.deepsight-extractor
       - status: 78
       com.symantec.diskMountNotify.plist
       - status: 78
       com.symantec.navapd
       com.symantec.navapdaemonsl
       - status: 78
       com.symantec.sharedsettings
       com.symantec.symdaemon
       - status: 78
       xxx.qnation.PeerGuardian.kextload
       - status: 78
    Agents
       com.adobe.ARM.UUID
       com.apple.AirPortBaseStationAgent
       com.apple.FolderActions.enabled
       - status: -11
       com.apple.photostream-agent
       com.dell.hostregister
       com.dell.profilelistener
       com.divx.agent.postinstall
       com.google.keystone.system.agent
       com.oracle.java.Java-Updater
       com.symantec.uiagent.application
       - status: 78
    Startup items
       /Library/StartupItems/ChmodBPF/ChmodBPF
       /Library/StartupItems/ChmodBPF/StartupParameters.plist
       /Library/StartupItems/cma/StartupParameters.plist
       /Library/StartupItems/Jaksta/Jaksta
       /Library/StartupItems/Jaksta/StartupParameters.plist
       /Library/StartupItems/VirtualBox/StartupParameters.plist
       /Library/StartupItems/VirtualBox/VirtualBox
    App extensions
       com.rockysandstudio.Memory-Diag.Widget
    Contents of /Library/LaunchAgents/com.dell.hostregister.plist
       - mod date: Dec 25 21:59:54 2011
       - checksum: 2053524734
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.dell.hostregister</string>
        <key>Program</key>
        <string>/Library/Printers/Dell/Utilities.localized/AppHostRegister.app/Contents /MacOS/AppHostRegister</string>
        <key>OnDemand</key>
        <true/>
        <key>WatchPaths</key>
        <array>
        <string>/etc/cups/ppd</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.dell.profilelistener.plist
       - mod date: Dec 25 21:59:54 2011
       - checksum: 1303522842
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.dell.profilelistener</string>
        <key>Program</key>
        <string>/Library/Printers/Dell/Utilities.localized/AppProfileListener.app/Conte nts/MacOS/AppProfileListener</string>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
       - mod date: Sep 17 12:22:35 2013
       - checksum: 4104577057
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>0</integer>
        <key>Minute</key>
        <integer>46</integer>
        <key>Weekday</key>
        <integer>3</integer>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.symantec.uiagent.application.plist
       - mod date: Dec 28 23:58:40 2011
       - checksum: 2715641560
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.symantec.uiagent.application</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Symantec/SymUIAgent/SymUIAgent.app/Contents/MacOS/SymUIAgent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.barebones.authd.plist
       - mod date: Nov  5 20:53:28 2013
       - checksum: 1995816654
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>Label</key>
        <string>com.barebones.authd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.barebones.authd</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>com.barebones.authd.socket</key>
        <dict>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        <string>/var/tmp/com.barebones.authd.socket</string>
        </dict>
        </dict>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.cleverfiles.cfbackd.plist
       - mod date: Oct 22 22:22:05 2013
       - checksum: 928112517
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist
         PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
         "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
         <key>Disabled</key><false/>
         <key>Label</key><string>com.cleverfiles.cfbackd</string>
         <key>ProgramArguments</key>
         <array>
           <string>/Library/Application Support/CleverFiles/BackService.app/Contents/MacOS/cfbackd</string>
         </array>
         <key>OnDemand</key><false/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.mcafee.ssm.Eupdate.plist
       - mod date: Jul 14 02:43:54 2011
       - checksum: 1853145806
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <!-- Copyright (C) 2011  McAfee, Inc. All rights reserved. -->
       <plist version="1.0">
       <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>DYLD_LIBRARY_PATH</key>
        <string>/usr/local/McAfee/AntiMalware/lib</string>
        </dict>
        <key>Label</key>
        <string>com.mcafee.ssm.Eupdate</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/local/McAfee/AntiMalware/VShieldUpdate</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>eUpdateListenerSocket</key>
        <dict>
        <key>SockFamily</key>
       ...and 9 more line(s)
    Contents of /Library/LaunchDaemons/com.mcafee.ssm.ScanManager.plist
       - mod date: Jul 14 02:43:54 2011
       - checksum: 2877607297
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <!-- Copyright (C) 2011  McAfee, Inc. All rights reserved. -->
       <plist version="1.0">
       <dict>
        <key>GroupName</key>
        <string>Virex</string>
        <key>InitGroups</key>
        <false/>
        <key>Label</key>
        <string>com.mcafee.ssm.ScanManager</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/local/McAfee/AntiMalware/VShieldScanManager</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.symantec.avscandaemon.plist
       - mod date: Oct 10 14:29:35 2009
       - checksum: 4152899394
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.symantec.avscandaemon</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivateFrameworks/SymAVScan.framework/Versions/A/Resources/Sym AVScanDaemon.bundle/Contents/MacOS/SymAVScanDaemon</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>AVScanDaemonSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPassive</key>
        <true/>
        <key>SockPathMode</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.symantec.deepsight-extractor.plist
       - mod date: Nov 12 18:07:07 2009
       - checksum: 24668217
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.symantec.deepsight-extractor</string>
        <key>OnDemand</key>
        <true/>
        <key>KeepAlive</key>
        <true/>
        <key>RunAtLoad</key>
        <true/>
        <key>LowPriorityIO</key>
        <true/>
        <key>Nice</key>
        <integer>10</integer>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StandardErrorPath</key>
        <string>/Library/Application Support/Symantec/DeepSight/errors.log</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Symantec/DeepSight/symdeepsight-extractor</string>
       ...and 10 more line(s)
    Contents of /Library/LaunchDaemons/com.symantec.diskMountNotify.plist
       - mod date: Nov 14 16:57:49 2009
       - checksum: 2121044924
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.symantec.diskMountNotify.plist</string>
        <key>RunAtLoad</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Symantec/AntiVirus/DiskMountNotify.app/Contents/MacOS/DiskMountNotify</ string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.symantec.navapd.plist
       - mod date: Nov 14 16:57:23 2009
       - checksum: 1790194037
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.symantec.navapd</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Symantec/AntiVirus/NortonAutoProtect.bundle/Contents/MacOS/NortonAutoPr otect</string>
        <string>dem</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>APSpecialSock</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPassive</key>
        <true/>
       ...and 8 more line(s)
    Contents of /Library/LaunchDaemons/com.symantec.navapdaemonsl.plist
       - mod date: Nov 14 16:57:23 2009
       - checksum: 3413446057
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.symantec.navapdaemonsl</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Symantec/AntiVirus/NortonAutoProtect.bundle/Contents/MacOS/NortonAutoPr otect</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceIPC</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.symantec.sharedsettings.plist
       - mod date: Jul 22 20:39:56 2009
       - checksum: 2142494329
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <false/>
        <key>Label</key>
        <string>com.symantec.sharedsettings</string>
        <key>MachServices</key>
        <dict>
        <key>com.symantec.sharedsettings</key>
        <true/>
        </dict>
        <key>Program</key>
        <string>/Library/PrivateFrameworks/SymSharedSettings.framework/Tools/SymSharedS ettingsd</string>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.symantec.symdaemon.plist
       - mod date: Nov 26 09:12:40 2009
       - checksum: 1926668438
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.symantec.symdaemon</string>
        <key>OnDemand</key>
        <false/>
        <key>KeepAlive</key>
        <true/>
        <key>RunAtLoad</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Symantec/Daemon/SymDaemon.bundle/Contents/MacOS/SymDaemon</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/xxx.qnation.PeerGuardian.kextload.plist
       - mod date: Mar  8 16:26:08 2009
       - checksum: 4148400257
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>GroupName</key>
        <string>wheel</string>
        <key>Label</key>
        <string>xxx.qnation.PeerGuardian.kextload</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/PeerGuardian/pgstart</string>
        <string>-l</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceIPC</key>
        <false/>
        <key>UserName</key>
        <string>root</string>
       </dict>
       </plist>
    Contents of /etc/hosts
       - mod date: Apr 25 10:10:20 2013
       - checksum: 2879152609
       127.0.0.1 localhost
       255.255.255.255 broadcasthost
       ::1             localhost
       fe80::1%lo0 localhost
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
       - mod date: Jan  9 15:32:15 2012
       - checksum: 408149527
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
       - mod date: Jan 30 23:38:53 2015
       - checksum: 3761042537
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Desktop/books</string>
        </array>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.divx.agent.postinstall.plist
       - mod date: Sep 19 10:40:02 2012
       - checksum: 3163907459
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.divx.agent.postinstall</string>
        <key>LimitToSessionType</key>
        <string>Aqua</string>
        <key>LaunchOnlyOnce</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>//Library/Internet Plug-Ins/DivXBrowserPlugin.plugin/Contents/Resources/extensions-installer</stri ng>
        <string>install</string>
        <string>safari</string>
        <string>DivXHTML5</string>
        <string>//Library/Internet Plug-Ins/DivXBrowserPlugin.plugin/Contents/Resources/DivXHTML5.safariextz</stri ng>
        </array>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.freenet.startup.plist
       - mod date: Nov  1 08:43:33 2014
       - checksum: 2491423124
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.freenet.startup.plist</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Freenet/run.sh</string>
               <string>start</string>
        </array>
        <key>LaunchOnlyOnce</key>
        <true/>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.macpaw.CleanMyMac.helperTool.plist
       - mod date: Jul  5 22:03:29 2014
       - checksum: 3584870086
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac.helperTool</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CleanMyMac/CleanMyMacHelperTool</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/.Trash</string>
        </array>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.macpaw.CleanMyMac.trashSizeWatcher.plist
       - mod date: Jul  5 22:03:30 2014
       - checksum: 2582102082
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac.trashSizeWatcher</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CleanMyMac/CleanMyMacHelperTool</string>
        <string>-watchTrashSize</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartInterval</key>
        <integer>21600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.macpaw.CleanMyMac.volumeWatcher.plist
       - mod date: Jul  5 22:03:29 2014
       - checksum: 1665290973
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac.volumeWatcher</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CleanMyMac/CleanMyMacHelperTool</string>
        <string>-cleanWinJunk</string>
        <string>-cleanTrashes</string>
        <string>-cleanMacOSJunk</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartOnMount</key>
        <true/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist
       - mod date: Oct  9 10:00:16 2013
       - checksum: 3654809970
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
         <key>Disabled</key>
         <true/>
         <key>KeepAlive</key>
         <false/>
         <key>Label</key>
         <string>org.virtualbox.vboxwebsvc</string>
         <key>Program</key>
         <string>/Applications/VirtualBox.app/Contents/MacOS/vboxwebsrv</string>
         <key>Sockets</key>
           <dict>
           <key>Listeners</key>
           <dict>
             <key>SockServiceName</key>
             <string>18083</string>
             <key>SockType</key>
             <string>stream</string>
             <key>SockFamily</key>
             <string>IPv4</string>
           </dict>
         </dict>
       </dict>
       ...and 1 more line(s)
    Root crontab
       45 16 * * * /usr/local/McAfee/AntiMalware/VShieldTaskManager 4 >> /dev/null 2>&1
    Profiles: 1
    Listeners
       cupsd: ipp
       kdc: kerberos
       launchd: afpovertcp
    User login items
       uHD-Agent
       - missing value
       SmartDaemon
       - missing value
       CPULed
       - missing value
       iTunesHelper
       - /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app
       WeatherSimple
       - missing value
       AdobeResourceSynchronizer
       - /Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app
       CrossOver CD Helper
       - missing value
       FreenetTray
       - missing value
    Safari extensions
       AdBlock
       - com.betafish.adblockforsafari
       DivX Plus Web Player HTML5 <video>
       - com.divx.DivXHTML5
       Turn Off the Lights
       - com.stefanvd.turnoffthelights
    Restricted files: 85
    Lockfiles: 91
    Elapsed time (sec): 785

  • HT5642 Unable to download app this time error while downloading app please help!!!

    when i download some app from apps store i get the following error
    "Unable to download app this time error while downloading app" please help!!!
    i ve tried these Things but
    didnt workout yet
    1) i tried hard reset
    2)i tried logout/login Itune & appstore
    3)Connected to pc and rest setting Network and Full Rest
    all of no use... i dont want to update my softwre from IOS 6.0
    Plx help!1

    Hey Prahaladvatsan,
    Thanks for the question. If I understand correctly, there is a blank app icon on the home screen. It looks like you have already done some troubleshooting. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • "no row count was produced" error using mqsl commands through Access

    "no row count was produced" error using mqsl commands through Microsoft Access. This sql statement works when I use in in the Access program but it does not work when I try and put it through Access using my Java program. Here is the block of code that I have that does the search.
    public static Game searchRecord(String search) throws SQLException{
    String query = "SELECT* " + "FROM gamefields WHERE SKU = '" + search + "' ORDER BY SKU ASC";
    Game lastGame = new Game(gamefields.getString(1),
    gamefields.getString(2),
    gamefields.getString(3),
    gamefields.getString(4),
    gamefields.getString(5),
    gamefields.getString(6),
    gamefields.getString(7),
    gamefields.getDouble(8));
    Statement statement = connection.createStatement(); //Creates connection
    //statment to database
    statement.executeUpdate(query); //Executes the delete query and Updates the database
    statement.close();
    close();
    open();
    return lastGame;

    When you use the code from java, you access access (!) through the ODBC interface. Things can be different in ODBC and Jet. When you use PrepareadStatements, you should be on the save side:
    public static Game searchRecord(String search) throws SQLException
    String query = "SELECT * FROM gamefields WHERE SKU = ? ORDER BY SKU ASC";
    PreparedStatement statement = connection.prepareStatement(query);
    statement.setString(1,  search);
    ResultSet rs = statement.executeQuery(query);
    if(rs.next()
    // if a row retuned extract the details here
    rs.close();
    statement.close();
    return lastGame;
    }

  • TS3694 I couldn't be update my iphone. An unknown error occurred (6). Please help me to resolve this problem.

    I could not be updated my iphone4. An unknown error is occurred(6). please help me to resolve this problem

    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or phobos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • TS3694 i think itunes  has removed my iphone software. because now not showing home screen. when i tried to restore my phone there generated an error no is 1015. please help me how can i recover my iphone again?

    i think itunes  has removed my iphone software. because now not showing home screen. when i tried to restore my phone there generated an error no is 1015. please help me how can i recover my iphone again?

    From the article which you posted your question from:
    Errors related to downgrading iOS
    The required resource cannot be found: This alert message occurs when your device has a newer version of iOS than what is available in iTunes. When troubleshooting a device that presents this alert message, go to Settings > General > About and check the version of iOS on the device. If it is newer than the latest released iOS version, the device may have a prerelease developer version of iOS installed.   Installing an older version of iOS over a newer version is not supported.
    Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state.

Maybe you are looking for