An interesting problem for HP All-in-one machines

I posted a problem Sunday about my system freezing during boot. It was suggested that my power supply was probably underpowered. See link below for the thread:
https://forum-en.msi.com/index.php?threadid=43996&sid=
I bought a new 480W power supply (see specs at bottom) to resolve the problem. After installing it, I was surprised to see it freeze at boot-up again. So, this time I unplugged each USB individually. It turns out the device causing the problem was my new HP all-in-one printer/scanner/copier.
I checked HP's site to find out that interestingly enough the computer was trying to boot from the digital camera card slots! Anyway, I downloaded the new firmware for my printer and everything is working great now.
I am glad I replaced my power supply though, now I can overclock without worrying too much. Plus, the PS that came with my case was a piece of junk .

Yep you Must watch those Do It All USB Devices, And you are 100% Correct Getting rid of the PSU that came with your Case, is the BEST Upgrade that you could have made Period!............Sean REILLY875

Similar Messages

  • Interesting problem for all students and programmers Have a look!

    Hello. This is a very interesting problem for all programmers and students. I have my spalsh screen class which displays a splash when run from the main method in the same class. However when run from another class( in my case from my login class, when user name and password is validated) I create an instance of the class and show it. But the image in the splash is not shown. Only a squared white background is visible!!!.
    I am sending the two classes
    Can u tell me why and propose a solution. Thanks.
    import java.awt.*;
    import javax.swing.*;
    public class SplashScreen extends JWindow {
    private int duration;
    public SplashScreen(int d) {
    duration = d;
    // A simple little method to show a title screen in the center
    // of the screen for the amount of time given in the constructor
    public void showSplash() {
    JPanel content = (JPanel)getContentPane();
    content.setBackground(Color.white);
    // Set the window's bounds, centering the window
    int width = 300;
    int height =400;
    Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (screen.width-width)/2;
    int y = (screen.height-height)/2;
    setBounds(x,y,width,height);
    // Build the splash screen
    JLabel label = new JLabel(new ImageIcon("logo2.gif"));
    JLabel copyrt = new JLabel
    ("Copyright 2004, Timetabler 2004", JLabel.CENTER);
    copyrt.setFont(new Font("Sans-Serif", Font.BOLD, 16));
    content.add(label, BorderLayout.CENTER);
    content.add(copyrt, BorderLayout.SOUTH);
    Color oraRed = new Color(100, 50, 80, 120);
    content.setBorder(BorderFactory.createLineBorder(oraRed, 10));
    // Display it
    setVisible(true);
    // Wait a little while, maybe while loading resources
    try { Thread.sleep(duration); } catch (Exception e) {}
    setVisible(false);
    public void showSplashAndExit() {
    showSplash();
    // System.exit(0);
    // CLASS CALLING THE SPLASH
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.*;
    import java.applet.*;
    import java.applet.AudioClip;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.net.URL;
    public class login extends JDialog
    String username;
    String password;
    JTextField text1;
    JPasswordField text2;
    login()
    //super("Login To TIMETABLER");
    text1=new JTextField(10);
    text2 = new JPasswordField(10);
    text2.setEchoChar('*');
    JLabel label1=new JLabel("Username");
    JLabel label2=new JLabel("Password");
    label1.setFont(new Font("Garamond",Font.BOLD,16));
    label2.setFont(new Font("Garamond",Font.BOLD,16));
    JButton ok=new JButton(" O K ");
    ok.setActionCommand("ok");
    ok.setOpaque(false);
    ok.setFont(new Font("Garamond",Font.BOLD,14));
    ok.setBackground(SystemColor.controlHighlight);
    ok.setForeground(SystemColor.infoText);
    ok.addActionListener(new ActionListener (){
    public void actionPerformed(ActionEvent e)
    System.out.println("ddddd");
    //validatedata();
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    System.out.println("->here");
    // setVisible(false);
    // mainpage m=new mainpage();
    // m.setDefaultLookAndFeelDecorated(true);
    // m.callsplash();
    /// m.setSize(640,640);
    // m.show();
    //m.setVisible(true);
    SplashScreen splash = new SplashScreen(5000);
    // Normally, we'd call splash.showSplash() and get on with the program.
    // But, since this is only a test...
    splash.showSplashAndExit();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    JButton cancel=new JButton(" C A N C E L ");
    cancel.setActionCommand("cancel");
    cancel.setOpaque(false);
    cancel.setFont(new Font("Garamond",Font.BOLD,14));
    cancel.setBackground(SystemColor.controlHighlight);
    cancel.setForeground(SystemColor.infoText);
    cancel.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e)
    dispose();
    System.exit(0);
    JPanel pan1=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan2=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan3=new JPanel(new FlowLayout(FlowLayout.CENTER,20,20));
    pan1.setOpaque(false);
    pan2.setOpaque(false);
    pan3.setOpaque(false);
    pan1.add(label1);
    pan1.add(label2);
    pan2.add(text1);
    pan2.add(text2);
    pan3.add(ok);
    pan3.add(cancel);
    JPanel_Background main=new JPanel_Background();
    JPanel mainpanel=new JPanel(new BorderLayout(25,25));
    mainpanel.setOpaque(false);
    // mainpanel.setBorder(new BorderLayout(25,25));
    mainpanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder
    ("Login To Timetabler Vision"),BorderFactory.createEmptyBorder(10,20,10,20)));
    mainpanel.add("West",pan1);
    mainpanel.add("Center",pan2);
    mainpanel.add("South",pan3);
    main.add(mainpanel);
    getContentPane().add(main);
    void validatedata()
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    SplashScreen splash = new SplashScreen(5000);
    splash.showSplashAndExit();
    dispose();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    public void callsplash()
    {SplashScreen splash= new SplashScreen(1500);
    splash.showSplashAndExit();
    public static void main(String args[])
    { login m=new login();
    Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
    int screenPositionX=(int)(screenSize.width/2-390/2);
    int screenPositionY=(int)(screenSize.height/2-260/2);
    m.setLocation(screenPositionX, screenPositionY);
    //m.setResizable(false);
    m.setSize(600,500);
    m.setSize(390,260);
    m.setVisible(true);

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • Problems Installing J4680C all in one

    I'm having problems installing the all in one for my j4680c. I'm getting a fatal error message. I'm runningWindows 7 64 bit.
    This is the screenshot I took:

    Hi @Mezron,
    I see that you are experiencing issues installing the printer software. You are getting a fatal error message. Thank you for providing the screen shot of the error message. I will certainly do my best to help you.
    Please download and save the latest drivers if you haven't already. HP Officejet Full Feature Software and Driver.
    Turn off the Antivirus Software and the Real Time Scanning if your Antivirus Software has this feature. It can affect the full software from being installed.
    Here is a example using McAffee Security Center.
    Disable Real-Time Scanning and the Firewall:
    Open your McAfee product located down by your clock and right click the M.
    Click Navigation and select Real-Time Scanning .
    Click Turn Off .
    Click Navigation and select Firewall .
    Click Turn Off .
    Return to the main product window and verify that Real-Time Scanning and the Firewall remain off.
    Close your McAfee product. The status should show that you are not protected.
    Then follow this document to register Windows components, msconfig and reinstall the printer software again.
    Fatal Error 'Error 1603. A fatal error occurred during installation' (MSI Error 1603) Displays Durin...
    If you have any further issues, check this document out for A 'Fatal Error' (MSI error) Displays on the Computer During HP Software Installation in Windows.
    Please provide in detail the results if you are still having issues.
    Have a wonderful day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Any suggestions for an all-in-one "cable modem router print server" (N)

    any suggestions for an all-in-one "cable modem router print server" (N)?

    If that's a problem with your cable company, change the company.
    If your cable company is not able to provide you with a cable modem which gets you full performance for their service why would you bother with that company or try to make it better than them?
    If you subscribe to a 100 Mbit/s service they must be able to provide you with a modem that does 100 Mbit/s and be able to demonstrate you 100 Mbit/s on your cable.
    If they are unable to provide you with a modem which does 100 Mbit/s and thus cannot demonstrate that the service they have installed in fact can do 100 Mbit/s but only give you a 50 Mbit/s because that's the best they have, why bother buying yourself a better modem to find out whether or not their service does what it promises or not??
    In addition, an integrated device won't get you better performance. On the contrary, consumer devices are generally single CPU (and core) devices. It's usually running some Linux or similar. If a single process gets overloaded it can drag down the performance of the whole device. For instance, let's say there is a bug in the print server software of the router. You print something and it hangs and the print server process on the router runs wild. Now the CPU is fully loaded and the routing performance will go down. If there is a bug in the routing software it will bring down the whole device and you can't even print.
    You'll get the best performance if you use dedicated devices because then one device cannot overload another. Get a modem. Get a wireless ethernet router. Get a printer with integrated print server. That's far better.
    It's like the all-purpose audio device compared to components...

  • Looking for basic driver for psc all in one 2175 for XP 32 bit. Thank you

    looking for basic driver for psc all in one 2175 for XP 32 bit. Thank you Dont need all the photo suite stuff,just basic scan and print.
    Thanks

    Hi @RUkiddingme 
    You can download the full feature software and driver, and only install the basic driver. In the installation you should see the option for custom software. Here is the link to download the software; rw2_021_w02_enu.exe
    Please let me know if this resolves the issue.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Looking for a for an all-in-one printer that is compatible with greeting card programs..​.

    looking for a for an all-in-one printer that is compatible with greeting card programs...my original one was an HP PSC  1510...replaced it with a Deskjet 1050 & it does not work...any suggestions?

    I bought an epson xp650 a couple of months ago and cannot fault it. It does everything I require and it is the wifi model so I can print directly from my ipad/iphone. Not sure if you are asking about the colour of the unit or just to be able to print black and white, Obviously all printers will print black and white but just to give you a little more info the printer I bought is the white version and it looks really nice sat next to my imac 27''
    Hope this helps.

  • Need help . Bought original HP 21b ink for F370 all in one printer , its not printing

    Hi , 
    Need help . Bought original HP 21b ink for F370 all in one printer , its not printing at all .Kindly mail at [Thank you for visiting the HP Support Forums. I am sorry to inform you that your post has needed some editing to remove personal information.]
    . Thanks .

    Hello @Bn23 , and welcome to the HP Forums, I hope you enjoy your experience!
    I see you're running into print issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information we can provide you with accurate information.
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Also, when you print, does a blank page come out, or does no paper feed through the printer?  Is there any errors that come up?
    Please let me know what you find.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to create an default profile for every user on one machine? Deployment of configurations?

    On firefox 3.5.X i can copy an configured profile from an user-folder to the programm folder of firefox. \mozilla firefox\defaults\profiles.
    After an new user log in to the machine the default profile will get the actual profile of the new user. With all bookmarks, configurations and so on.
    But this doesn't work with the firefox 3.6.10? What changed? What will be the way i can get an default configuration for every user on one machine? I want to deploy the firefox with an default configuration in our enterprise? Why does the behaviour change?
    What to do?
    Thanks...

    No - there are no missing data, because nothing will be copied. The profile - folder does not work.
    There are the standard first start behavior.
    There might be another trick? Hint? Todo?
    Thanks.

  • Reading HP all in one machine

    I have a trial version of Acrobat Pro and need to scan.  But Acrobat pro will not "read" or "see" my HP Officejet Pro L 7590.  Can you tell me how to install the all in one machine so I can scan using Acrobat?

    Are you printing or scanning? 
    Did you load the latest drivers for your device?

  • Usb for 1510 all-in-one printer causing problems with it accepting print jobs

    I am having trouble downloading the driver for a 1512 all-in-one printer.  It was working for about a week and it is not working now.  I loaded the suggested driver 1510 all-in-one driver but when I get to plugging in the usb from my Windows 7 laptop to the printer, it does not feel it is connected.  I can print items that I scan but am puzzled how it will not print.  The only thing I have deduced is I need a new usb cable.  I bought on ebay as I've always had good luck with hp products.
    Sparky325

    I decided that in spite of the fact that it had previously printed, I got another USB cord and used that and then the printer worked.  The one I received with the printer must have been too loose to make a connection.  This one feels snug when i need to print from my laptop.  Thanks for your help. Sparky 325

  • Looking for new All in One. Is Officejet as good as Photosmart? Please recommend an All in One.

    I have the HP Photosmart C7180 All in One that's a few years old and is starting to give me a lot of errors (mostly ink level errors).  I'm thinking about replacing it, because I want one that doesn't use as much ink -- and one that has a bigger scanner bed (at least 11 x 14 or bigger).  I'm a budding artist and I want to have the ability to scan in my drawings.
    However, I do print a few photos now and then.  Does anyone know if Officejets will print decent pictures?
    Please recommend an All in One (the newer the better) for my needs. 

    Thanks! It sounds like a potential nightmare. Does
    anyone have a different experience? I'm not
    committed to an all-in-one, but it does save space.
    If you're willing to take time and effort into the process, HP's MFDs and Brother's MFDs work... mostly. HP has even improved their drivers. It took 'em long enough.
    No, I repeat, no MFD I've ever seen has been trouble-free, Mac or Windows. That includes Epson, Canon, HP, Brother, and (ugggh!) Lexmark devices. They all give problems. Not necessarily the same problems, but problems. HPs and Brothers give the least trouble with Epson a close third... but YMMV. I know people who swear by Canon, while in my personal experience Canon devices have been... not so good. But it was a limited sample, and maybe I had lemons.
    Most MFDs (that is, everyone but Brother) don't easily do networking unless it's a Specific Feature™. My HP PSC1350, for instance, does not believe that such a thing as a network exists, and is that way if connected to Macs or Windows machines. I can make it visible over the network, but it's a pain.
    If you want wireless network printing, get a wireless router (hint: Apple sells something called an AirPort Base Station) or access point which has a USB port and supports putting printers on the network. Note that you'll likely not be able to scan over the network.
    There are network MFDs; HP makes some. They're expensive. The OfficeJet 74xx is $500, and it's the cheap HP network MFD. I do NOT own one, so I have no idea how well they work, other than they're HPs... which means that the hardware will probably be excellent, and the software dreck.

  • Cannot install HP Photosmart Solution Center for C410a All-In-One

    Computer: Dell Inspiron 15R
    O/S: Windows 8.1, 64-bit
    Printer: HP Photosmart Premium  Fax e-All-in-One Printer C410a
    This computer had a version of the HP Solution Center successfully installed in the past, but we started having problems with the computer to the point where we lost all the Microsoft Office suite.  After repairing/reinstalling that, I repaired all the other Programs in the Control Panel Unstall page.  However, I decided to uninstall all HP software using the Control Panel Unstall Program.  I rebooted the computer and attempted to reinstall the HP Solution Center by downloading the latest software from the HP website.  The software will not reinstall.
    When the installer screen appears, it has 3 buttons: Install, Readme, Exit.
    When I hit "Install", a popup window indicates "The system cannot find the file specified."
    So, I cancel out of it and hit "Readme".  A different popup window appears indicates:
    Windows cannot find
    'C\Users\Karen\AppData\Local\Temp\7zS3838\setup\Readme\autorun.infla...\Readme.hml'
    Make sure you typed the name correctly, and then try again.
    I hit "Exit" and the installation window closes.
    The "\Readme\autorun.infla...\Readme.hml" message bothered me so I looked into the 7zS3838 directory.  There I found the Autorun setup information file.  Under the "[LaunchPad.Main.Btn2]" section is a line:
    TargetPath=.\setup\Readme\%lang%\Readme.html.  It seems to me the "%lang%" parameter is messed up somehow being set to some version of "autorun.infla".  If "%lang%" is corupted, it seems likely that other parameters are corrupted as well indicated by the error message produced when hitting "Install".
    I have tried running the Unstall_L4.bat.  It seems to fail on a particular section, but then presses on to completion.
    I have run a Disc Cleanup and rebooted the computer several time as well as tried this installation several times but to no avail.
    I have tried installing using the PS_AIO_07_C410_140_408.exe software and it produces the same results as the Solution Center.
    I even tried the original installation disc, but, when the installation screen appeared, there were no "Install" nor "Readme" buttons (only and "Exit" button).
    I have looked at the log files for the Solution Center installation.  It produced 12 log files: HPSLPSVC0000 - HPSLPSVC0010 and HPPIWLog.  None of the HPSLPSVC log files show any errors.  But, the HPPIWLog does.  I'll post the as much log as I can at the end of this post.  However, 2 failures stand out.
    The first is:
    ( 3-21-2014 22:38:38:347 ):MsiEnumRelatedProducts Failed with Upgrade code : {CC6EF10F-6CFE-4660-85B4-4CED9EEC7B5B}
    The second is:
    ( 3-21-2014 22:55:30:96 ):Error.!!Device's TYPE is NOT SUPPORTED
    Well, other that the 2 errors from the log file, please let me know if you have any ideas on how the "%lang%" parameter could have been corrupted.  I'm willing to dig into the registry if I have to.
    Thanks in advance!
    Ted
    Here's the HPPIWLog:
    ( 3-21-2014 22:34:17:665 ):-------------- APPLICATION STARTUP --------------------
    ( 3-21-2014 22:34:17:665 ):Version :3.1.0.19
    ( 3-21-2014 22:34:17:665 )perating System : (64 Bit)
    ( 3-21-2014 22:34:17:665 ):-------------------------------------------------------
    ( 3-21-2014 22:34:18:134 )howing Invitation Screen..
    ( 3-21-2014 22:34:18:134 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:34:18:134 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:34:18:134 )et Aboutbox string..
    ( 3-21-2014 22:34:18:196 ):Window is set as foreground
    ( 3-21-2014 22:34:18:196 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:34:22:306 )howing Preparing Dialog..
    ( 3-21-2014 22:34:22:306 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:34:22:306 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:34:22:306 )et Aboutbox string..
    ( 3-21-2014 22:34:22:306 ):Window is set as foreground
    ( 3-21-2014 22:34:22:306 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:34:22:697 ):Inside CSparkBusinessLogic:repareSoftwareAvailabilityMatrix
    ( 3-21-2014 22:34:22:697 ):Inside CNetworkEnum Constructor
    ( 3-21-2014 22:34:22:697 ):Call CoCreateInstance
    ( 3-21-2014 22:36:22:818 ):call ReregisterSLPService
    ( 3-21-2014 22:36:23:5 )evice Manager Enumeration - USB and Network devices
    ( 3-21-2014 22:36:23:21 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:36:23:21 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:36:23:21 )et Aboutbox string..
    ( 3-21-2014 22:36:23:36 ):Window is set as foreground
    ( 3-21-2014 22:36:23:36 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:36:33:538 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:36:33:538 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:36:33:538 )et Aboutbox string..
    ( 3-21-2014 22:36:33:538 ):Window is set as foreground
    ( 3-21-2014 22:36:33:538 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:36:34:70 ):Thread Started..
    ( 3-21-2014 22:36:34:70 ):Enumerating Modelnumber of USB Devices.
    ( 3-21-2014 22:36:34:85 )LP Enumeartion.
    ( 3-21-2014 22:36:34:85 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:36:34:85 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:36:34:85 )et Aboutbox string..
    ( 3-21-2014 22:36:34:85 ):Window is set as foreground
    ( 3-21-2014 22:36:34:101 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:38:34:206 ):WMI Enumeartion.
    ( 3-21-2014 22:38:35:472 )evice Manager Enumeration - Karnak enumeration
    ( 3-21-2014 22:38:35:472 ):Get Modelnumber of Network Karnak Device..
    ( 3-21-2014 22:38:36:831 ):Inside IsKarnakDevice Method
    ( 3-21-2014 22:38:36:831 )evice : HP Photosmart Prem C410 series
    ModelNumber : CQ521A
    ( 3-21-2014 22:38:36:831 ):Webserer Request URL : http://h20614.www2.hp.com/ediags/solutions/software?client=PIW&FriendlyName=HP Photosmart Prem C410 series&OS=Windows NT 6.2
    ( 3-21-2014 22:38:38:347 ):Inside CheckForSoftware Method..
    ( 3-21-2014 22:38:38:347 ):MsiEnumRelatedProducts Failed with Upgrade code : {CC6EF10F-6CFE-4660-85B4-4CED9EEC7B5B}
    ( 3-21-2014 22:38:38:347 ):Inside CNetworkEnum Constructor
    ( 3-21-2014 22:38:38:347 ):Call CoCreateInstance
    ( 3-21-2014 22:40:38:425 ):call ReregisterSLPService
    ( 3-21-2014 22:40:38:487 ):Network Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:40:38:487 ):ModelNumber : CQ521A
    ( 3-21-2014 22:40:38:487 ):Requet Send to Terminate Thread .!!
    ( 3-21-2014 22:40:38:487 ):Thread Terminated.!!
    ( 3-21-2014 22:40:38:487 ):Returns from CSparkBusinessLogic:repareSoftwareAvailabilityMatrix
    ( 3-21-2014 22:40:38:487 ):Number of Devices Enumerated : 0
    ( 3-21-2014 22:40:38:487 ):No devices Connected/Installed
    ( 3-21-2014 22:40:38:487 ):Current Screen Id : 3
    ( 3-21-2014 22:40:38:503 )howing USB Connection Dialog..
    ( 3-21-2014 22:40:38:503 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:40:38:503 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:40:38:503 )et Aboutbox string..
    ( 3-21-2014 22:40:38:519 ):Window is set as foreground
    ( 3-21-2014 22:40:38:519 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:40:38:519 ):Inside CUsbConnectionDlg : OnInitDialog()
    ( 3-21-2014 22:40:38:519 ):Returns from CUsbConnectionDlg : OnInitDialog()
    ( 3-21-2014 22:40:53:544 ):currentScreenId = ScreenIdNetworkDeviceSelect (2P)
    ( 3-21-2014 22:40:53:544 )howing Network Device Dialog..
    ( 3-21-2014 22:40:53:560 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:40:53:576 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:40:53:576 )et Aboutbox string..
    ( 3-21-2014 22:40:53:576 ):Window is set as foreground
    ( 3-21-2014 22:40:53:576 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:40:53:591 ):Inside NetWorkDialog : OnInitDialog()
    ( 3-21-2014 22:40:53:591 ):Calling NetWorkDialog : EnumerateNetworkDevices()
    ( 3-21-2014 22:40:53:591 ):Inside CNetworkEnum Constructor
    ( 3-21-2014 22:40:53:591 ):Call CoCreateInstance
    ( 3-21-2014 22:42:53:653 ):call ReregisterSLPService
    ( 3-21-2014 22:44:53:823 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:44:53:823 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:44:53:823 )et Aboutbox string..
    ( 3-21-2014 22:44:53:823 ):Window is set as foreground
    ( 3-21-2014 22:44:53:839 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:45:3:872 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:45:3:872 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:45:3:872 )et Aboutbox string..
    ( 3-21-2014 22:45:3:888 ):Window is set as foreground
    ( 3-21-2014 22:45:3:888 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:45:4:232 ):Calling sparkBL.GetLatestSoftwareAvailabilityMatrix From Network dialog
    ( 3-21-2014 22:45:4:232 ):Inside GetLatestSoftwareAvailabilityMatrix Method
    ( 3-21-2014 22:45:4:232 ):Inside CSparkBusinessLogic:repareSoftwareAvailabilityMatrix
    ( 3-21-2014 22:45:4:232 ):Inside CNetworkEnum Constructor
    ( 3-21-2014 22:45:4:232 ):Call CoCreateInstance
    ( 3-21-2014 22:47:4:304 ):call ReregisterSLPService
    ( 3-21-2014 22:47:4:350 )LP Enumeartion.
    ( 3-21-2014 22:49:4:457 ):WMI Enumeartion.
    ( 3-21-2014 22:49:4:723 )evice Manager Enumeration - Karnak enumeration
    ( 3-21-2014 22:49:4:723 ):Returns from CSparkBusinessLogic:repareSoftwareAvailabilityMatrix
    ( 3-21-2014 22:49:4:723 )et LatestSoftwareAvailabilityMatrix as devMap = m_DeviceSoftwareAvailabilityMatrix
    ( 3-21-2014 22:49:4:723 ):Returns from sparkBL.GetLatestSoftwareAvailabilityMatrix
    ( 3-21-2014 22:49:4:738 ):Returns from NetWorkDialog : EnumerateNetworkDevices()
    ( 3-21-2014 22:49:18:6 ):currentScreenId = ScreenIdNetworkDeviceSelect
    ( 3-21-2014 22:49:18:6 )et Re-enumeration Flag : True.
    call GetDeviceSelectionScreenId
    ( 3-21-2014 22:49:18:6 ):Inside CSparkBusinessLogic:repareSoftwareAvailabilityMatrix
    ( 3-21-2014 22:49:18:6 ):Inside CNetworkEnum Constructor
    ( 3-21-2014 22:49:18:6 ):Call CoCreateInstance
    ( 3-21-2014 22:51:18:57 ):call ReregisterSLPService
    ( 3-21-2014 22:51:18:167 )evice Manager Enumeration - USB and Network devices
    ( 3-21-2014 22:51:18:182 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:51:18:182 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:51:18:182 )et Aboutbox string..
    ( 3-21-2014 22:51:18:198 ):Window is set as foreground
    ( 3-21-2014 22:51:18:198 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:51:28:247 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:51:28:262 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:51:28:262 )et Aboutbox string..
    ( 3-21-2014 22:51:28:278 ):Window is set as foreground
    ( 3-21-2014 22:51:28:278 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:51:28:590 ):Thread Started..
    ( 3-21-2014 22:51:28:590 ):Enumerating Modelnumber of USB Devices.
    ( 3-21-2014 22:51:28:590 )LP Enumeartion.
    ( 3-21-2014 22:51:28:606 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:51:28:606 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:51:28:606 )et Aboutbox string..
    ( 3-21-2014 22:51:28:622 ):Window is set as foreground
    ( 3-21-2014 22:51:28:622 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:53:28:710 ):WMI Enumeartion.
    ( 3-21-2014 22:53:28:961 )evice Manager Enumeration - Karnak enumeration
    ( 3-21-2014 22:53:28:976 ):Get Modelnumber of Network Karnak Device..
    ( 3-21-2014 22:53:29:148 ):Inside CNetworkEnum Constructor
    ( 3-21-2014 22:53:29:148 ):Call CoCreateInstance
    ( 3-21-2014 22:55:29:206 ):call ReregisterSLPService
    ( 3-21-2014 22:55:29:252 ):Network Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:29:252 ):ModelNumber : CQ521A
    ( 3-21-2014 22:55:29:252 ):Get Modelnumber of Network SLP Device..
    ( 3-21-2014 22:55:29:424 ):Network Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:29:424 ):ModelNumber : CQ521A
    ( 3-21-2014 22:55:29:424 )evice Details..
    Name : HP Photosmart Prem C410 series
    PID : 0000
    ModelNumber : CQ521A
    ( 3-21-2014 22:55:29:424 ):Request send by PID
    ( 3-21-2014 22:55:29:440 ):Webserer Request URL : http://h20614.www2.hp.com/ediags/solutions/software?client=PIW&Pid=0x0000&OS=Windows NT 6.2
    ( 3-21-2014 22:55:30:96 ):Error.!!Device's TYPE is NOT SUPPORTED
    ( 3-21-2014 22:55:30:96 ):Failed to Parse Json Object.
    ( 3-21-2014 22:55:30:96 ):Failed to read webserver data using PID
    ( 3-21-2014 22:55:30:96 ):Request send by Friendlyname
    ( 3-21-2014 22:55:30:96 ):Webserer Request URL : http://h20614.www2.hp.com/ediags/solutions/software?client=PIW&FriendlyName=HP Photosmart Prem C410 series&OS=Windows NT 6.2
    ( 3-21-2014 22:55:31:362 ):Inside CheckForSoftware Method..
    ( 3-21-2014 22:55:31:362 ):MsiEnumRelatedProducts Failed with Upgrade code : {CC6EF10F-6CFE-4660-85B4-4CED9EEC7B5B}
    ( 3-21-2014 22:55:31:362 ):Insert device details to Matrix
    ( 3-21-2014 22:55:31:362 ):Requet Send to Terminate Thread .!!
    ( 3-21-2014 22:55:31:362 ):Thread Terminated.!!
    ( 3-21-2014 22:55:31:362 ):Returns from CSparkBusinessLogic:repareSoftwareAvailabilityMatrix
    ( 3-21-2014 22:55:31:362 ):Number of Devices Enumerated : 1
    ( 3-21-2014 22:55:31:362 )evices Connected/Installed
    ( 3-21-2014 22:55:31:362 )howing Device Dialog..
    ( 3-21-2014 22:55:31:425 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:55:31:440 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:55:31:440 )et Aboutbox string..
    ( 3-21-2014 22:55:31:456 ):Window is set as foreground
    ( 3-21-2014 22:55:31:456 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:55:31:456 )evice Dialog :: OnInitiDialog()
    ( 3-21-2014 22:55:31:471 ):Calling EnumerateDevices(false)
    ( 3-21-2014 22:55:31:471 ):Returns from sparkBL-> GetSoftwareAvailabilityMatrix/ GetLatestSoftwareAvailabilityMatrix
    ( 3-21-2014 22:55:31:471 ):m_listPrinters.DeleteAllItems()
    ( 3-21-2014 22:55:31:471 ):Number of Devices added to List : 1
    ( 3-21-2014 22:55:31:471 )evices added to List
    ( 3-21-2014 22:55:31:471 ):Returns from EnumerateDevices..
    ( 3-21-2014 22:55:31:471 )etReEnumerationFlag : True
    ( 3-21-2014 22:55:31:487 )evices Listed..
    ( 3-21-2014 22:55:31:487 ):m_listPrinters.SetSelectionMark(0).
    ( 3-21-2014 22:55:31:487 )et iDevNdx = m_listPrinters.GetSelectionMark().
    ( 3-21-2014 22:55:31:487 )elected device index, iDevNdx = 0
    ( 3-21-2014 22:55:31:487 )elected device index changed, Now iDevNdx = 0
    ( 3-21-2014 22:55:31:487 ):calling sparkBL.SetDeviceMatrix(m_DeviceSoftwareAvailabilityMap[iDevNdx])
    ( 3-21-2014 22:55:31:487 ):Returns from sparkBL.SetDeviceMatrix()
    ( 3-21-2014 22:55:31:487 ):Calling Updatestatus
    ( 3-21-2014 22:55:31:487 ):Extra checking added for Bad devnode
    ( 3-21-2014 22:55:31:487 ):Call CPrinterEnumerator::EnumerateUSBPrinters Method
    ( 3-21-2014 22:55:31:487 ):Return from CPrinterEnumerator::EnumerateUSBPrinters
    ( 3-21-2014 22:55:31:487 ):Exitting CheckBadDevnode Method
    ( 3-21-2014 22:55:31:487 )electd Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:31:487 )evice Not Installed.!!
    ( 3-21-2014 22:55:31:487 ):No Bad devnode
    ( 3-21-2014 22:55:31:487 ):No Driver Issue
    ( 3-21-2014 22:55:31:503 )ort Issue Found.!!
    ( 3-21-2014 22:55:31:503 ):Missing Driver Issue.!!
    ( 3-21-2014 22:55:31:503 )rint Not Installed.!!!
    ( 3-21-2014 22:55:31:503 )can Not Installed.!!!
    ( 3-21-2014 22:55:31:503 )evice has FULL Solution
    ( 3-21-2014 22:55:31:503 ):Calling UpdateVidPid
    ( 3-21-2014 22:55:31:503 ):calling sparkBL.GetDeviceMatrix() from UpdateVidPid.
    ( 3-21-2014 22:55:31:503 )elected Device's PID : 0
    ( 3-21-2014 22:55:31:503 ):Calling UpdateModelNumber
    ( 3-21-2014 22:55:31:503 ):calling sparkBL.GetDeviceMatrix() from UpdateModelNumber.
    ( 3-21-2014 22:55:31:503 ):Modelnumber : CQ521A
    ( 3-21-2014 22:55:31:518 )isable the sorting of devices in ListCrtl
    ( 3-21-2014 22:55:31:518 ):Returns from Device Dialog :: OnInitiDialog()
    ( 3-21-2014 22:55:38:285 ):Extra checking added for Bad devnode
    ( 3-21-2014 22:55:38:285 ):Call CPrinterEnumerator::EnumerateUSBPrinters Method
    ( 3-21-2014 22:55:38:285 ):Return from CPrinterEnumerator::EnumerateUSBPrinters
    ( 3-21-2014 22:55:38:285 ):Exitting CheckBadDevnode Method
    ( 3-21-2014 22:55:38:285 )electd Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:38:285 )evice Not Installed.!!
    ( 3-21-2014 22:55:38:285 ):No Bad devnode
    ( 3-21-2014 22:55:38:285 ):No Driver Issue
    ( 3-21-2014 22:55:38:285 )ort Issue Found.!!
    ( 3-21-2014 22:55:38:285 ):Missing Driver Issue.!!
    ( 3-21-2014 22:55:38:285 )rint Not Installed.!!!
    ( 3-21-2014 22:55:38:285 )can Not Installed.!!!
    ( 3-21-2014 22:55:38:285 )evice has FULL Solution
    ( 3-21-2014 22:55:38:301 ):calling sparkBL.GetDeviceMatrix() from UpdateVidPid.
    ( 3-21-2014 22:55:38:301 )elected Device's PID : 0
    ( 3-21-2014 22:55:38:301 ):calling sparkBL.GetDeviceMatrix() from UpdateModelNumber.
    ( 3-21-2014 22:55:38:301 ):Modelnumber : CQ521A
    ( 3-21-2014 22:55:38:426 ):Extra checking added for Bad devnode
    ( 3-21-2014 22:55:38:426 ):Call CPrinterEnumerator::EnumerateUSBPrinters Method
    ( 3-21-2014 22:55:38:426 ):Return from CPrinterEnumerator::EnumerateUSBPrinters
    ( 3-21-2014 22:55:38:426 ):Exitting CheckBadDevnode Method
    ( 3-21-2014 22:55:38:426 )electd Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:38:426 )evice Not Installed.!!
    ( 3-21-2014 22:55:38:426 ):No Bad devnode
    ( 3-21-2014 22:55:38:426 ):No Driver Issue
    ( 3-21-2014 22:55:38:426 )ort Issue Found.!!
    ( 3-21-2014 22:55:38:426 ):Missing Driver Issue.!!
    ( 3-21-2014 22:55:38:426 )rint Not Installed.!!!
    ( 3-21-2014 22:55:38:426 )can Not Installed.!!!
    ( 3-21-2014 22:55:38:426 )evice has FULL Solution
    ( 3-21-2014 22:55:38:426 ):calling sparkBL.GetDeviceMatrix() from UpdateVidPid.
    ( 3-21-2014 22:55:38:426 )elected Device's PID : 0
    ( 3-21-2014 22:55:38:442 ):calling sparkBL.GetDeviceMatrix() from UpdateModelNumber.
    ( 3-21-2014 22:55:38:442 ):Modelnumber : CQ521A
    ( 3-21-2014 22:55:47:115 ):Extra checking added for Bad devnode
    ( 3-21-2014 22:55:47:115 ):Call CPrinterEnumerator::EnumerateUSBPrinters Method
    ( 3-21-2014 22:55:47:115 ):Return from CPrinterEnumerator::EnumerateUSBPrinters
    ( 3-21-2014 22:55:47:115 ):Exitting CheckBadDevnode Method
    ( 3-21-2014 22:55:47:115 )electd Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:47:115 )evice Not Installed.!!
    ( 3-21-2014 22:55:47:115 ):No Bad devnode
    ( 3-21-2014 22:55:47:115 ):No Driver Issue
    ( 3-21-2014 22:55:47:115 )ort Issue Found.!!
    ( 3-21-2014 22:55:47:115 ):Missing Driver Issue.!!
    ( 3-21-2014 22:55:47:115 )rint Not Installed.!!!
    ( 3-21-2014 22:55:47:115 )can Not Installed.!!!
    ( 3-21-2014 22:55:47:115 )evice has FULL Solution
    ( 3-21-2014 22:55:47:115 ):calling sparkBL.GetDeviceMatrix() from UpdateVidPid.
    ( 3-21-2014 22:55:47:115 )elected Device's PID : 0
    ( 3-21-2014 22:55:47:130 ):calling sparkBL.GetDeviceMatrix() from UpdateModelNumber.
    ( 3-21-2014 22:55:47:130 ):Modelnumber : CQ521A
    ( 3-21-2014 22:55:47:146 )electd Device : HP Photosmart Prem C410 series
    ( 3-21-2014 22:55:47:146 ):FTP URL : ftp://ftp.hp.com/pub/softlib/software12/COL34152/mp-109793-1/PS_AIO_07_C410_140_408.exe
    ( 3-21-2014 22:55:47:146 )howing Downloading Dialog..
    ( 3-21-2014 22:55:47:162 ):Inside CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:55:47:162 ):called Spark::g_pMediator->RegisterNotification(m_hWnd)..
    ( 3-21-2014 22:55:47:162 )et Aboutbox string..
    ( 3-21-2014 22:55:47:193 ):Window is set as foreground
    ( 3-21-2014 22:55:47:193 ):Returns from CSparkDialog:nInitDialog()..
    ( 3-21-2014 22:55:47:209 ):-------HPPIW SOLUTION DOWNLOAD INFO------
    ( 3-21-2014 22:55:47:209 )olution Download Link :ftp://ftp.hp.com/pub/softlib/software12/COL34152/mp-109793-1/PS_AIO_07_C410_140_408.exe
    ( 3-21-2014 23:0:16:422 ):Running Processes :
    ( 3-21-2014 23:0:16:422 ):[System Process]
    ( 3-21-2014 23:0:16:422 )ystem
    ( 3-21-2014 23:0:16:422 ):smss.exe
    ( 3-21-2014 23:0:16:422 ):csrss.exe
    ( 3-21-2014 23:0:16:422 ):wininit.exe
    ( 3-21-2014 23:0:16:422 ):csrss.exe
    ( 3-21-2014 23:0:16:422 ):winlogon.exe
    ( 3-21-2014 23:0:16:422 ):services.exe
    ( 3-21-2014 23:0:16:422 ):lsass.exe
    ( 3-21-2014 23:0:16:422 ):svchost.exe
    ( 3-21-2014 23:0:16:422 ):svchost.exe
    ( 3-21-2014 23:0:16:422 ):dwm.exe
    ( 3-21-2014 23:0:16:422 ):svchost.exe
    ( 3-21-2014 23:0:16:422 ):svchost.exe
    ( 3-21-2014 23:0:16:422 ):svchost.exe
    ( 3-21-2014 23:0:16:422 ):svchost.exe
    ( 3-21-2014 23:0:16:422 ):RtkAudioService64.exe
    ( 3-21-2014 23:0:16:437 ):RAVBg64.exe
    ( 3-21-2014 23:0:16:437 ):RAVBg64.exe
    ( 3-21-2014 23:0:16:437 ):svchost.exe
    ( 3-21-2014 23:0:16:437 ):spoolsv.exe
    ( 3-21-2014 23:0:16:437 ):svchost.exe
    ( 3-21-2014 23:0:16:437 ):armsvc.exe
    ( 3-21-2014 23:0:16:437 ):AERTSr64.exe
    ( 3-21-2014 23:0:16:437 ):AppleMobileDeviceService.exe
    ( 3-21-2014 23:0:16:437 ):AdminService.exe
    ( 3-21-2014 23:0:16:437 ):mDNSResponder.exe
    ( 3-21-2014 23:0:16:437 )fficeclicktorun.exe
    ( 3-21-2014 23:0:16:437 ):dasHost.exe
    ( 3-21-2014 23:0:16:437 ):HeciServer.exe
    ( 3-21-2014 23:0:16:437 ):McSvHost.exe
    ( 3-21-2014 23:0:16:437 ):mfevtps.exe
    ( 3-21-2014 23:0:16:437 ):svchost.exe
    ( 3-21-2014 23:0:16:437 ):svchost.exe
    ( 3-21-2014 23:0:16:437 ):RichVideo.exe
    ( 3-21-2014 23:0:16:437 ):svchost.exe
    ( 3-21-2014 23:0:16:437 )ocketCloudService.exe
    ( 3-21-2014 23:0:16:437 ):WyseRemoteAccess.exe
    ( 3-21-2014 23:0:16:453 ):McAPExe.exe
    ( 3-21-2014 23:0:16:453 ):mcshield.exe
    ( 3-21-2014 23:0:16:453 ):mfefire.exe
    ( 3-21-2014 23:0:16:453 ):svchost.exe
    ( 3-21-2014 23:0:16:453 ):svchost.exe
    ( 3-21-2014 23:0:16:453 ):svchost.exe
    ( 3-21-2014 23:0:16:453 ):taskhostex.exe
    ( 3-21-2014 23:0:16:453 )ynTPEnh.exe
    ( 3-21-2014 23:0:16:453 ):explorer.exe
    ( 3-21-2014 23:0:16:453 ):GoogleCrashHandler.exe
    ( 3-21-2014 23:0:16:453 ):TabTip.exe
    ( 3-21-2014 23:0:16:453 ):TabTip32.exe
    ( 3-21-2014 23:0:16:453 ):GoogleCrashHandler64.exe
    ( 3-21-2014 23:0:16:453 )earchIndexer.exe
    ( 3-21-2014 23:0:16:453 )kyDrive.exe
    ( 3-21-2014 23:0:16:453 ):WmiPrvSE.exe
    ( 3-21-2014 23:0:16:453 ):dllhost.exe
    ( 3-21-2014 23:0:16:453 )ettingSyncHost.exe
    ( 3-21-2014 23:0:16:468 ):BtvStack.exe
    ( 3-21-2014 23:0:16:468 ):ActivateDesktop.exe
    ( 3-21-2014 23:0:16:468 ):RtkNGUI64.exe
    ( 3-21-2014 23:0:16:468 ):RAVBg64.exe
    ( 3-21-2014 23:0:16:468 ):RAVBg64.exe
    ( 3-21-2014 23:0:16:468 )ynTPHelper.exe
    ( 3-21-2014 23:0:16:468 ):igfxtray.exe
    ( 3-21-2014 23:0:16:468 ):igfxsrvc.exe
    ( 3-21-2014 23:0:16:468 ):hkcmd.exe
    ( 3-21-2014 23:0:16:468 ):igfxpers.exe
    ( 3-21-2014 23:0:16:468 ):quickset.exe
    ( 3-21-2014 23:0:16:468 )ellSystemDetect.exe
    ( 3-21-2014 23:0:16:468 )DVD10Serv.exe
    ( 3-21-2014 23:0:16:468 ):McUICnt.exe
    ( 3-21-2014 23:0:16:468 ):hppiw (9).exe
    ( 3-21-2014 23:0:16:468 ):hppiw.exe
    ( 3-21-2014 23:0:16:468 ):AbsoluteReminder.exe
    ( 3-21-2014 23:0:16:468 ):CLMLSvc_P2G8.exe
    ( 3-21-2014 23:0:16:468 ):IAStorIcon.exe
    ( 3-21-2014 23:0:16:468 ):IAStorDataMgrSvc.exe
    ( 3-21-2014 23:0:16:468 ):Jhi_service.exe
    ( 3-21-2014 23:0:16:484 ):WmiPrvSE.exe
    (FYI - Could not post whole log due to the 50,000 character limit.  No errors reported after this point)

    Firstly, thanks for your suggestion.  I appreciate it.
    Secondly, sorry it took so long to get back to you.  The computer is my wife's and she been quite busy with it so I haven't had the chance to test out your suggestion.
    Unfortunately, your suggestion didn't work.  I tried it multiple times with no luck.
    Here's some additional data.
    (1) As for the "ReadMe" issue (mentioned in the initial message), the "autorun.infla..." issue looks like the first "%" in the "%lang%" string is in fact the name of the file "autorun.inf".  So when "%lang%" is being printed, "autorun.inf" is being substituted for the first "%", hence "autorun.infla...".
    Not sure if that helps.
    (2) I tried running HP Print and Scan Doctor and I saw something unusual.  The initial page shows the following:
    Product                                       Connect                                  Software Status
    Prem C410,192.168.1.7      Network(192.168.1.5)     Installed 
    Prem C410,192.168.1.7      Network(192.168.1.7)     Installed 
    There is ony 1 printer hooked to the network.  I searched through the registry and I did find instances of "192.168.1.5" and "192.168.1.7".
    (3) I also tried using the various uninstallers under util\ccc.
    L1: Completed with no issues.
    L2: On step 10/12, a popup window indicates "Hp Installer Uninstaller has stopped working".  I click "Close Program" and that's the end of the processing.  
    L3: Same as L2.  But, after closing the program, a pop-up window asks "Are you sure you want to remove  from your computer?"  (FYI - No, I did not miss anything here.  That is exactly as it is printed.  There seems to be 2 spaces between "remove" and "your" as if a filename or program name should go here.)  I click "Yes", eventually the screen indicates 100% complete and I click "OK".  This sequence happens 3 more times (pop-up followed by a 100% complete screen).  After the 4th time, a screen indicates the process is complete, I hit "Finish" and the computer automatically reboots.
    L4: Exactly the same as L3.
    At times when step 10/12 failed, the "Current Progress" will be stopped on "Software\Wow6432\Hewlett-Packard\" followed by other registry entries.  I've searched through the registry and I can find only one entry that matches this: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432\Hewlett-Packard.  But, none of the entries that follow that on the "Current Progress" bar match any entries.  (Ex: Software\Wow6432\Hewlett-Packard\DigitalImaging\CUE Settings.  This key does not exist.  There is a HKEY_CURRENT_USER\Software\Hewlett-Packard\DigitalImaging\CUE Settings, but not one tagged with the "Wow6432" entry.
    Anyway, it looks like something has gone wrong with this computer's registry.  I reluctant to start hacking away at the registry.
    I could use some more suggestions.
    Thanks!
    Ted

  • Printing/Scanning Problem with HP All-In-One

    As you will see, I am a bit confused as to how my Mac is talking to my HP all in one. I am having printing and scanning problems. When I try to print, nothing happens. I go to print status and the print job is there but the printer is not printing. I try pausing, deleting and trying to print again, hold to no avail. It recognizes the job, it just won't print.
    Scanning is similar. Most of the time I end up with an error message "The scan cannot be performed because another program has control of the HP imaging device". It directs me to restart the program, close all programs, re-boot the computer. I have done all of these and no go. In addition, no other programs are running at the time.
    As far as my computer recognizing the HP, it does in both wifi and bluetooth. I have made it my default printer.
    I have a time capsule as a router and everything is set up properly for it. Four bars are shown indicating it is acting properly. Both it and bluetooth are turned on. The HP status lights are on for both wifi and bluetooth.
    I have checked with HP and Apple Support and could not find anything that addresses my issue. Please help!!
    Thanks

    I had a similar problem awhile back with my HP F2210 all-in-one. I basically re-downloaded all of the software for the printer from HPs site. Before re-installing, I did a safe boot. Then, I reinstalled and restarted and all was well. When software update told me there was a new driver available, I installed it and things still worked. I'm able to print, scan, and all the printer is supposed to do without a hitch.

  • Windows 8 problems 2575 series all in one

    Recently I bought a new laptop which runs Windows 8(64-bit) and when I tried to install the software required to run my printer (2575 series all in one) I couldn't  because the software wasn't compatible with windows 8.
    Is there any way for me to install a driver, an emulator or some kind of software  that would allow me to accses my printer?
    Edit: sorry, accidentaly double posted somehow.

    The HP 2575 is compatible with Windows 8
    Go to this site, Drivers and Software, Select your OS and download the Full Feature Software and Drivers.
    http://support.hp.com/us-en/product/HP-Photosmart-2570-All-in-One-Printer-series/441247/model/441248...
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

  • Anyone know of Scanner Plug-in for PSE 8 on Windows 7 for HP All-in-One

    I'm asking on behalf of a friend, but here's the deal. She has Photoshop Elements 8 installed on a Windows 7 machine.She would like to find a plugin that will allow her to scan in photos from her Hewlett Packard All-in-One scanner directly from Photoshop Elements 8. I have searched the internet, Adobe's site and HP's site and have found plenty of hints that such a plug-in exists, but no sign of an actual, downloadable file.
    Any assistance is deeply appreciated.

    I believe that the plug in which you reference relates to PSEv.9.
    http://kb2.adobe.com/cps/849/cpsid_84933.html
    There have been reported problems scanning directly from PSEv.8 & WIN 7, esp. with HP machines. Check the HP site to see if there are updated drivers for the equipment.
    If not, suggest utilizing the software that was installed with the scanner, then importing the file for enhancement in PSE.

Maybe you are looking for

  • RoboHelp for Word 8.0 - can't open a pdf file from help topic

    running RoboHelp for Word 8.0 on a Windows 7 machine. I produce WinHelp for one of our clients. I just converted an old online help system from RoboHelp 7 to RoboHelp 8. one of my topics has a button to launch a pdf file {button Transport Feature Cha

  • Urgent need please help me

    hi abap experts 1. how we will upload data into  R/3 system for the transaction va01 with the help of table control?  in this sceniaro how we will be the flat file structure? if u have any source code please send it? 2. please send me the flat file s

  • My screen in Safari locks, how do I fix this problem?

    Who can help

  • Analyzer and Charts

    Hi, I am working on some reports and  have a question. Can I create a chart save it and transport it to QA. If yes, how? Regards

  • Upgrading Oracle 7.3 to 10g

    Hello All, We are planning to upgrade Oracle 7.3 to 10 g. Is any one know what is hardware requirements for 10g on Sun Solaris or other UNIX System? What we have Currently is as follows: Operating System, SUN Solaris 5.5.1 For Production: SUN Microsy