Problem Following SMP tutorial with SDK 8.1

I'm attempting to follow the SMP development tutorial but I'm starting with Win SDK 8.1.  Attempting to use convert-moftoprovider fails with missing mofs that are referenced in storagewmi_provider.mof (like msft_filestoragetier.mof).  I don't see
these in Windows Kits/8.1/Include/um.  I do see some of these classes in /C/Windows/System32/wbem/storagewmi.mof but so far attempting to include this mof file doesn't allow the class generation to complete.
So I guess I have a couple of broad questions about where the MSFT_ meta classes are defined as well as how this class schema is versioned (per SDK).  I would also like to get a overview of the meta model, I guess generating code and pointing visual
studio to the generated artifacts is the best mechanism here?
Thanks, I haven't dealt with Windows Mgmt environment in a while but do have a broad exposure to CIM; so some of these questions are likely due to my ignorance.  Any pointers are apprecieated.

I ended up finding the solution to my own problem, so here it is in case anyone else runs into this problem. Turns out I was missing the file EAR/META-INF/application.xmlThe splitdir example contains a sample file.

Similar Messages

  • No problem with sdk 1.3- problem with 1.4!!!

    I am trying to make an interface using swing objects..
    The buttons are looking like images (2D) when compiling and running the program with sdk 1.4...
    although if I use 1.3 everything is ok??
    even with the new java version I still have the same problem..
    has anyone any idea how to fix this??
    thx in advance!

    /*                      BET                                 */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
      * Summary description for BET
    public class BET extends JFrame
         // Variables declaration
         private JLabel jLabel1;
         private JLabel jLabel2;
         private JLabel jLabel3;
         private JTextField jTextField1;
         private JTextField jTextField2;
         private JTextField jTextField3;
         private JTextField jTextField4;
         private JTextField jTextField6;
         private JButton jButton1;
         private JButton jButton2;
         private JPanel contentPane;
         // End of variables declaration
         public BET()
              super();
              initializeComponent();
              // TODO: Add any constructor code after initializeComponent call
              this.setVisible(true);
          * This method is called from within the constructor to initialize the form.
          * WARNING: Do NOT modify this code. The content of this method is always regenerated
          * by the Windows Form Designer. Otherwise, retrieving design might not work properly.
          * Tip: If you must revise this method, please backup this GUI file for JFrameBuilder
          * to retrieve your design properly in future, before revising this method.
         private void initializeComponent()
              jLabel1 = new JLabel();
              jLabel2 = new JLabel();
              jLabel3 = new JLabel();
              jTextField1 = new JTextField();
              jTextField2 = new JTextField();
              jTextField3 = new JTextField();
              jTextField4 = new JTextField();
              jTextField6 = new JTextField();
              jButton1 = new JButton();
              jButton2 = new JButton();
              contentPane = (JPanel)this.getContentPane();
              // jLabel1
              jLabel1.setForeground(new Color(59, 241, 227));
              jLabel1.setText("<HTML><B><U>QUESTION</B><HTML>");
              // jLabel2
              jLabel2.setForeground(new Color(50, 245, 113));
              jLabel2.setText("<HTML><B><U>CHOICE</B><HTML>");
              // jLabel3
              jLabel3.setForeground(new Color(50, 245, 113));
              jLabel3.setText("<HTML><B><U>POINTS</B><HTML>");
              // jTextField1
              jTextField1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField1_actionPerformed(e);
              // jTextField2
              jTextField2.setText("YES");
              jTextField2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField2_actionPerformed(e);
              // jTextField3
              jTextField3.setText("10");
              jTextField3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField3_actionPerformed(e);
              // jTextField4
              jTextField4.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField4_actionPerformed(e);
              // jTextField6
              jTextField6.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField6_actionPerformed(e);
              // jButton1
              jButton1.setBackground(new Color(117, 158, 145));
              jButton1.setText("OK");
              jButton1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton1_actionPerformed(e);
              // jButton2
              jButton2.setBackground(new Color(117, 158, 145));
              jButton2.setText("CANCEL");
              jButton2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton2_actionPerformed(e);
              // contentPane
              contentPane.setLayout(null);
              contentPane.setBackground(new Color(67, 97, 83));
              addComponent(contentPane, jLabel1, 172,8,60,18);
              addComponent(contentPane, jLabel2, 73,78,60,18);
              addComponent(contentPane, jLabel3, 211,76,60,18);
              addComponent(contentPane, jTextField1, 9,27,403,28);
              addComponent(contentPane, jTextField2, 24,101,134,22);
              addComponent(contentPane, jTextField3, 203,101,51,22);
              addComponent(contentPane, jTextField4, 21,151,137,22);
              addComponent(contentPane, jTextField6, 18,200,140,22);
              addComponent(contentPane, jButton1, 299,188,80,70);
              addComponent(contentPane, jButton2, 299,90,80,70);
              // BET
              this.setTitle("BET");
              this.setLocation(new Point(-2, 1));
              this.setSize(new Dimension(424, 316));
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTextField1_actionPerformed(ActionEvent e)
              System.out.println("\njTextField1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField2_actionPerformed(ActionEvent e)
              System.out.println("\njTextField2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField3_actionPerformed(ActionEvent e)
              System.out.println("\njTextField3_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField4_actionPerformed(ActionEvent e)
              System.out.println("\njTextField4_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField6_actionPerformed(ActionEvent e)
              System.out.println("\njTextField6_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton1_actionPerformed(ActionEvent e)
              System.out.println("\njButton1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton2_actionPerformed(ActionEvent e)
              System.out.println("\njButton2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
    //============================= Testing ================================//
    //=                                                                    =//
    //= The following main method is just for testing this class you built.=//
    //= After testing,you may simply delete it.                            =//
    //======================================================================//
         public static void main(String[] args)
              JFrame.setDefaultLookAndFeelDecorated(true);
              JDialog.setDefaultLookAndFeelDecorated(true);
              try
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              catch (Exception ex)
                   System.out.println("Failed loading L&F: ");
                   System.out.println(ex);
              new BET();
    //= End of Testing =
    This is my code.. the problem is that when i use sdk 1.3 everything is fine... I tried to use 1.4 and now 5 and I have a problem with the appearance of buttons... I have some comments in my code. is just a form with some textfields and labels and the 2 buttons!
    thx in advance

  • Agentry app development with SMP 3.0 SDK

    Dear All,
    I am new to Agentry app development using SMP 3.0 and i have some basic knowledge on Agentry app development using Eclipse editor using Agentry Plug-in's, and after developing the app, publishing to the Agentry Server and testing the same app using Agentry ATE, but what my queries is please find the below points.
    1) In SMP 3.0 SDK, under Agentry app development what is the use of following 'a' and 'b', and give me more clarity about those 'a' and 'b'.
         a) Agentry OpenUI for iOS Setup Overview and
         b) Agentry OpenUI for Android Setup Overview
    For above points please find the Agentry1.jpeg for better understand.
    2)In the same SMP 3.0 SDK under Agentry app development what is the following points and give me more clarity the same below points.
        a) The Agentry SDK
         b) Agentry Device Client Branding SDK.
         c) Agentry OpenUI API
    For above points please find the Agentry2.jpeg for better understand.
    3) And how to generate executable like .apk for Android client and .ipa for iOS client and .cab for Windows Mobile etc..
    Best Regards,
    Ranjith Lingala
    Tags edited by: Michael Appleby

    Ranjith,
    I will do my best to answer your questions.
    1) OpenUI is a new option for Agentry applications under SMP 3.0 to allow users to extend and create their own controls for the Agentry clients.  Open UI is available for WPF, iOS and Android clients.  Using OpenUI is optional but can be used to create additional controls that do not exist in the base Agentry product (for example a slider control).  Open UI controls are created using the native language of the device so there are different setup instructions for each platform.
    2a) The Agentry SDK is the Active X process that only applies to Windows Mobile clients under SMP3.0.  For the other clients it has be replaced with OpenUI.
    2b)  Device branding is a process to take a generic client and apply your own icon, name, etc to it so that it is specific to your application name.  Again here the process for branding differs depending on the platform.
    2c) See #1
    3) Generating the .ipa or .apk process is part of either OpenUI or the Branding process.  You will need to follow the steps specific to which one you are doing.  There is no process for generating .cab files.  The branding for WinCE involves creation of a custom installer using NSIS scripts
    With SMP 3.0 we have even more options for extending the Agentry client to provide better integration (ESRI maps via OpenUI) or additional controls to improve the user experience.
    Have fun!
    --Bill

  • I am new to Muse so I am following the tutorial for Katie's Cafe.  I downloaded the sample files.  The problem is not all the files are in the folder as are on the tutorial.  The colour sample for instance is not there.  The CC Getting Started Katies.muli

    I am new to Muse so I am following the tutorial for Katie's Cafe.  I downloaded the sample files.  The problem is not all the files are in the folder as are on the tutorial.  The colour sample for instance is not there.  The CC Getting Started Katies.mulib file is also not there so you cannot automatically download all the necessary library files.  Can anyone help?

    found it in another area
    Where do I find the cc getting started Katies.mulib File ?

  • Waiting for chat. Moved to contact chat because of a small red excailmation point over the CC icon. This is followed by a prompt, (under the Apps tab), "There is a Problem". Any help with this issue?

    "There is a Problem"?

    Dave,
    I am sorry to say, the "creative cloud" is entirely useless to me.  I routinely go to locations where internet access is not available and despite repeated sign in's and activations, prior to leaving, if there is no connection available on site, it will not work.  i.e., it is useless.
    Most disturbing...  When I contact "chat", or call in to tech support, I am told there is nothing I can do and if I want to cancel the subscription (which I really don't want to do, but I am paying for something that does not work), I have to pay the "cancellation fee", despite my quoting your earlier message which stated that there is a known problem causing this.  With no one else to contact to discuss this with and no other solutions being presented, I'm running out of options.
    At this point, I am no longer even trying to use any of the other programs available via "creative cloud", since I am unsure of what the long term result will be and I have gone back to using my old / backup computer with the my previous, stand-a-lone, Photoshop, etc., installations.
    Worse...  "Chat" notified me that the cost for upgrading my stand-a-lone Photoshop (CS5 -> CS6) will soon go up because I had not upgraded it "in a timely manner" (ie, last year when I opted for the upgrade through creative cloud instead).

  • Problem in Oracle ADF with JDeveloper. JBO25001

    Hello All,
    I have to develop an application using oracle ADF and JDeveloper. To famalirize my self with the technology, I downloaded the Oracle ADF tutorial "Tutorial for Forms/4GL developers" from Oracle site.
    I am following this tutorial line by line, but still getting an error. I have created
    1) Entities
    2) Associations
    3) Views
    4) ViewLinks
    5) Application Module
    all by wizard.
    After I added my view and view link into the application module and tried to test it it gave me the following error.
    (oracle.jbo.common.ampool.ApplicationPoolException) JBO-30003: The application pool (.10E97657A25) failed to checkout an application module due to the following exception:
    ----- LEVEL 1: DETAIL 0 -----
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NameClashException, msg=JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    ----- LEVEL 2: DETAIL 0 -----
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.jbo.NameClashException, msg=JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    ----- LEVEL 3: DETAIL 0 -----
    (oracle.jbo.NameClashException) JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    I changed the names of each object but still the problem persisted.
    If any body can help me on this I will really appreciate it. Thanx a ton in advance.
    I have downloaded and using the latest JDeveloper version 10.1.3.1.0.3984
    Please help me on this.
    Regards,
    Saket Maheshwary

    Saket,
    Did you ever get this situation resolved?
    I'm working thru the tutorial myself and get the same error except the object is Product.
    Do you have any clues?
    Thanks,
    Lonnie Spears

  • Using TLF with SDK 3.5 - 1014 error

    Hi
    I have followed the steps outlined at http://opensource.adobe.com/wiki/display/tlf/Using+TLF+with+Flex+3.2 to import TLF to user with SDK 3.5. I have verified that I have the latest swc. I get no compile erros but at runtime I get
    VerifyError: Error #1014: Class flashx.textLayout.elements::TextFlow could not be found
    Any help would be greatly appreciated.

    I have never use TLF with SDK 3.5.
    After reading what you have said, I guess you are setting SWCs in your project as "runtime shared Library", but there is not a RSL link( or not a correct RSL link) in the configuration file named flex-config.xml in SDK 3.5, to download the SWF or SWZ successfully in the runtime. You may solve the problem by setting libraries as "merge into code"

  • [JDevelopper 10g]problem deploying ADF libraries with JBOSS 3.2.1

    Hi,
    i'm testing JDevelopper 10g preview and i encounter i problem when i deploy the ADF libraries into my JBoss 3.2.1 directory.
    I follow the tutorial wich implements a simple ADF Aplication, based on a simple JSP page, with Struts, BC4J.
    It works well on OC4J...
    So i want to run my application under JBoss 3.2.1
    I try to follow the steps described in the help file but once the libraries (ADF) are copied to JBoss directory, this one does not start anymore....
    any idea ?

    Gilbert,
    actually JDeveloper 10g preview isn't tested on other J2EE servers than OC4J (the price we had to pay for being able to release a preview in time).
    So I cannot really tell what's going wrong there. However, the production release of JDeveloper 10g will support deployments to other Application Servers.
    Frank

  • Bpel Tutorial with JDeveloper

    Hi,
    Is there a BPel tutorial I can use with Jdeveloper Studio Edition 10.1.3.1.0.3984
    I have been trying to following the tutorial
    http://www.oracle.com/technology/products/ias/bpel/index.html
    and
    http://www.oracle.com/technology/obe/obe1013jdev/index.htm
    I am having problems following the flow because none of the screens seem to match what I am seeing in JDeveloper studio.
    What I would like is an introductory BPEL process tutorial which shows bpel process built and deployed.
    Has anyone got any links I could use.
    Thanks
    BP

    Thanks Mihai,
    I saw that link but when I click on the Quick Start Tutorial link it opens Oracle BPEL Process Manager 2.
    I presume this precedes the 10.1.3.1 Quick Start version on the link above so I used the 10.1.3.1 version
    http://www.oracle.com/technology/products/ias/bpel/index.html
    Quick Start Tutorial - JDeveloper 10g (PDF)
    in section
    Getting Started
    Perhaps if I start Tutorial 1 the screens might start to match.
    BP

  • TS3771 My iTunes U no longer works since the update, an error message pops up saying that "This movie requires QuickTime, which is not supported by this version of iTunes." I followed the tutorial that suggests to change to from 64 to 32 bit and it didn't

    iTunes U video files no longer work on my computer since i update to Mavericks. The following message appears on the screen "This movie requires QuickTime, which is not supported by this version of iTunes." I followed a tutorial that suggested to go to Applications/iTunes/Get Info and change to 32 bit. Now my iTunes does not open at all, it says it requires 64 bit. I am a bit confused and disappointed. What should I do to get it fixed? Buy a new MacBook?

    Marcello, I am having the same problem.  When following the advice of many in the community to start iTunes in 32-bit mode, I get the following error after I have done so:
    I am running 10.9.2 on a mac mini. 
    I am hoping this will be fixed or at least a solid answer could be given that iTunes will no longer support certain types of media going foward.

  • I have a serious (and bizarre!) issue with my novation impulse (Although i've tried it with two other keyboards and i still have the same problem) and its compatibility with mainstage 3

    i have a serious (and bizarre!) issue with my novation impulse (Although i've tried it with two other keyboards and i still have the same problem) and its compatibility with mainstage 3.
    the problem is best explained on the following one - page thread: 
    https://discussions.apple.com/thread/3951518?start=0&tstart=0
    (Clearly i'm not alone in this problem, although i think i figured out what's going wrong a little more than he did...read on!)
    his solution, to put mainstage in jump mode, is very unsatisfactory to me, as it bounces all of a sudden to drastically different settings.
    basically, my analysis is that my controller is NOT receiving MIDI date from mainstage.  in other words, mainstage knows what my controller is doing, but my controller doens't know what mainstage is doing.
     let's say i turn the knob all the way to the right ... 127...and the virtual fader goes to the right like it's supposed to. 
    now...next...let's say i change to a different patch, where that same VIRTUAL fader is not at the max clockwise position..maybe it's only at 1pm.  now when i turn the physical knob to the RIGHT, the midi data is still at 127 on the controller!  it didn't "reset" to sync up with the new level (say 80 or so) setting on the new patch.  so i can't increase that new setting of 80 by continuing to turn the knob to the right.  i have to turn it all the way to zero,...and then continue PAST zero until the controller thinks that IT is at 0...at that point the controller and mainstage are in agreement, and things work fine....so bascially, the keyboard thinks the level is at max...but mainstage thinks the level is at 1pm.
    i am using Logic 9, and i have a macbook pro 2.9 Ghz I7 with 8 gigs of memory and OS X 10.8.4

    Hi Josh,
    Thanks for taking the time to contact us here a Novation for technical support. Lets continue to correspond via email so we can get your issue resolved.
    Thanks.
    Mike Towns

  • Will the problems I am having with slow Safari response times continue if I port the image of my 4 to an new iphone 5?

    As in many families, I am ready to upgrade my iphone 4 to a 5 and pass on my 4 to my partner (who has my old 3), BUT I am resistant to do so because I have been having problems with Safari, (very slow response time) ever since I upgraded to the new OS a month or so back. I have completed all the cleaning tips (cookies, individual app shut downs) and hard boot steps with no change. I can sit my partners Iphone 3 next to my 4 and when using Safari it beats it hands down, almost doubling the time it takes on the 3. My 4 is quicker on all the other apps so I don't believe it is a hardware issue. My tests were done using our home wi fi set up the same on both phones after running all the cleaning tips on both. 
    I actually broke down and called the support line and the first level support told me if I upgraded to the 5 I would likely carry the problem to the new phone. She said she suspected malware or a virus and that for $300 she could forward me to second level support that could scan my phone and see what the problem is on my 4 and support any issues on a new iphone 5 OR for a one time lower fee $79, just help me fix my 4.
    Thinking through her options, I chose none of the above. Seems like I should be able to either 1) isolate the issue myself with the help of this forum or 2) upgrade to the iphone 5 and if the problem follows to the new one, get the support via the new device warranty. If the support person is correct and the problem is in the software and would follow the device, then in theroy I could wipe and restore my old 4 with the back up/data of my partners 3 and the problem on the 4 should be resolved.
    I really don't want to carry the problem to a new phone if I can fix the issue first. I have airwatch software to push my work email to my phone and that is usually a pain to do when I upgrade anyhow. I don't need to pay for a new phone that has the same problem as my old one. I will get grief from my partner for passing on an issue that will come up with the daily use of the old iphone 4 that I will be responsible to fix anyhow. I have invested too much time already to generate problems on both our phones. Thanks in advance for any tips or guideance about a streamlined way forward. 

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Has any of this been tried?
    FYI, there are no viruses that affect iOS unless the device has been hacked or jailbroken, in which case they cannot be discussed here.

  • Problem in establishing connection with mysql 5.0

    Hi,
    I am using JCAPS 5.1. I tried to insert data to mysql database table.
    But i got following error
    java.sql.SQLException: Error in allocating a connection. Cause:
    Physical Connection doesn't exist.
    My intention is to read file in which data are comma seperated and to
    populate those values to a mysql 5.0 database table.
    Sample DATA in file [test.txt]
    111,gg,23,MFG
    112,hh,24,MFG
    113,ii,25,RETAIL
    114,jj,26,IT
    Database table: employee
    eno,ename,eage,edept
    While creating JDBC OTD there is no problem in establishing connection with database. But after deploying i got above error.
    I have used Mysql 5.0 Connector/J JDBC driver. Added JDBC driver jar files to following directories as required.
    1) C:\JavaCAPS51\logicalhost\is\lib
    2)C:\JavaCAPS51\logicalhost\is\domains\test\lib
    Steps i have followed as per JDBC-ODBC -eway user guide doc.
    1) Created USerDefined OTD and added necessary fields
    2) Created JDBC OTD.
    3) Created JAVA collaboration and do business process for inserting
    4) Mapped all components by creating in Connectivity MAp
    5) created necessary external systems in envrionment explorer.[JDBC External System and File External System]
    6)Created Deployment profile
    5) Deployed it.
    After deploying it gives error as
    java.sql.SQLException: Error in allocating a connection. Cause: Physical Connection doesn't exist
    Please let me know the solution for problem.
    Message was edited by:
    VenkateshSampoornam

    In the environment definition,
    -> External Application JDBC
    -> Properties
    -> Outbound JDBC Connection
    You have the database URL in the "DriverProperties" field
    Valid URL would be : jdbc:mysql://localhost:3306/caps
    !! The doc says that this field is optional !! Seems to be an error in the doc:
    Hope this helps
    Seb

  • EJBs in Oracle 8.1.5 with SDK 1.2.2

    I am trying to get our Java Application - formerly a 1.1.7 - which accesses EJBs in the database (8i - 8.1.5) running with the new JDeveloper 3.0 with SDK 1.2.2.
    After some Exceptions that remind me of missing classes I get to the point where I do the .lookup() of the bean:
    MyFirstHome home = (MyFirstHome) ic.lookup( beanURL + beanName );
    This results in a NotContextException under 1.2.2.
    Everything works just fine under 1.1.8 with JDev 3.0 and I can lookup the bean and access all the beans methods without any problems.
    Are there still classes missing or do I need to reconfigure the database to work with 1.2.2?
    I'd appreciate any help.
    Thanks,
    Thomas Janausch

    The 8.1.5 EJB client libraries (the aurora ORB client libraries) will not work with a JDK 1.2.x client. No workaround at present. Since the 8i R2 (8.1.6) RDBMS will include JDK 1.2 support, help shouldn't be too far off.

  • Too many problems-what's wrong with my machine or OS?

    Lately I have had many problems with my computer and am not sure what is the cause. The list is
    - apps crash (primarily pro apps - Final Cut Pro Studio apps)
    - grey crash screen frequently
    - black lines across the screen (video card issue?)
    - sometimes broken looking icons (video card issue?)
    - weird color problems with display (Great condition apple 23" Cinema display)
    - odd asian characters mixed iwth english characters in the restart dialogue box
    - screen will sometimes go black
    - Motion 2.1 makes entire machine slow down (such as moving over dock icons)
    - apps hang for a long time
    - G5 fans spin more
    Incidentally, S.M.A.R.T status is verified on both internal drives, ran disk utility and fixed permissions yielded no problems found, I installed a new Tiger OS (archive and install, saving users and network prefs) and still had the problems, and ran Disk Warrior and still have the problems.
    Any suggestions folks? At my witts end. I want to say the video card could be at fault but how do you know if a video card has problems? is there a card utility like DISK UTILITY?
    My config:
    G5 Dual 2 GHZ/ 4 GB RAM/ two 250 GB SATAs/ Apple 23" Cinema display (last model, not aluminum)/ Apple 17" LCD Studio Display/ WACOM Intuos2/ Blackmagic Decklink Extreme Card/ ATI Radeon 9600 XT (in AGP slot)/ ATI Radeon 9200 (in PCI slot)

    Hi, T. C.
    If you are seeing the following message
    that indicates a kernel panic.
    If so, see my "Resolving Kernel Panics" FAQ. This FAQ includes step-by-step instructions for identifying and resolving some of the most common causes of kernel panics. The FAQ is a roadmap: start at the beginning and work systematically through the end, i.e. the "If all else fails..." section.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

Maybe you are looking for

  • Comp wont recognize when ipod is plugged into USBport

    i have done everything and am at my wits end! Problem: when i plug in my ipod into the USB port it will charge, but the continuing arrow wheel that indicates it is activating will not display, nor will itunes accept its presence. in order to restore

  • Is there a way to rotate mail 180 degs so the antenna will be in the clear when typing?

    Once you understand the iPhone 4's antennas - you can make things work better, maybe even better than any onther phone.  However when in low cellular data signal areas and using e-mail or browser app, you normally have the cellular antenna in the pal

  • Can't edit Artwork ?

    Hi, I don't know what happened but suddenly I'm unable to edit the artwork on some tracks. This started after I updated my iTunes installation recently. Any suggestions ?

  • Lost start up CD

    Can't find start up CD for HP 1350 printer. What are my options? Thanks so much. Not sure if 32 or 64 bit.

  • Cannot play movies or tv series on my iTunes with OS X Yosemite

    I have been using my MacBook Pro to watch my movies and television series in iTunes. Lately, I am having a pop-up window saying that my screen is not HDCP compatible. The video displays blurred lines or just a black screen. The audio will work for on