Which win7 .inf file should be used for a photosmart 7760?

I have a Photosmart 7760 attached to a Win XP machine.  I have a new 64-bit Win7 machine and I'm trying to set up printing from this machine.  Windows keeps telling me that it can't find a driver for the printer.  HP says I need to use a driver from Windows update.  I've found several hp related .inf files on the win7 machine, but none mention the photosmart 7760.  Which one, if any should I try to enable me to print to this printer?
BTW, Win7 machine dual boots with linux.  There's no problem printing when booted in linux.

Hi,
Please follow instructions from this link:
   http://h10025.www1.hp.com/ewfrf/wc/softwareCategor​y?os=4062&lc=en&cc=us&dlc=en&sw_lang=&product=3053​...
Good luck.
BH
**Click the KUDOS thumb up on the left to say 'Thanks'**
Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Similar Messages

  • Which version of JDeveloper should I use for Oracle Apps 11.5.10.2?

    I am developing a stand alone application using JDeveloper 10.1.3.3, because I don't want to use the OAF extension. Can I run this stand alone application using Oracle Applications server (Oracle Applications version 11.5.10.2)? If no, which JDeveloper version should I use? If yes, could you please provide some direction on the deployment of stand alone application? Thanks in advance.

    If you are using the application server that comes with Oracle Applications - you probably need to use the JDeveloper version that comes with that one too. (The OAF forum will have more info on this).
    If you are using JDeveloper 10.1.3 then you can use a stand alone OC4J 10.1.3 to deploy your applications - and save yourself the hassle of messing up with your apps server.

  • Which jar files should I use for XSLT?

    I'm trying to do one of the examples from the Java/XML tutorial on this site. I can't get it to work. I started with the JAXP jar file and couldn't compile because it couldn't find one of the classes it needed. I then added the XALAN jar file to my CLASSPATH and got a clean compile but it crashes when I try to create the tranformer from the factory. It gives an error that says something like the SAX parser doesn't support the namespace. I tried various iterations of this. Could someone please tell me which jar files to include and in what sequence?
    Thanx,
    Cliff

    I have the Xerces jar followed by the Xalan jar.
    I get the following error:
    C:\JBUILDER4\JDK1.3\bin\javaw -classic -classpath "C:\JBuilder4\projects\ProjectXML\classes;C:\Java\lib\xerces.jar;C:\Java\lib\xalan.jar;C:\JBUILDER4\JDK1.3\demo\jfc\Java2D\Java2Demo.jar;C:\JBUILDER4\JDK1.3\jre\lib\i18n.jar;C:\JBUILDER4\JDK1.3\jre\lib\jaws.jar;C:\JBUILDER4\JDK1.3\jre\lib\rt.jar;C:\JBUILDER4\JDK1.3\jre\lib\sunrsasign.jar;C:\JBUILDER4\JDK1.3\lib\dt.jar;C:\JBUILDER4\JDK1.3\lib\tools.jar"  -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_shmem,address=javadebug,suspend=y com.craig.xml.util.Stylizer C:\JBuilder4\projects\ProjectXML\DataAreaDescTemplate.xsl C:\JBuilder4\projects\ProjectXML\DataAreas.xml
    javax.xml.parsers.FactoryConfigurationError: java.lang.ClassNotFoundException: org.apache.crimson.jaxp.DocumentBuilderFactoryImpl
         at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:149)
         at com.craig.xml.util.Stylizer.main(Stylizer.java:47)
    Exception in thread "main"
    This is my code:
    package com.craig.xml.util;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.FactoryConfigurationError;
    import javax.xml.parsers.ParserConfigurationException;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.Document;
    import org.w3c.dom.DOMException;
    // For write operation
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamSource;
    import javax.xml.transform.stream.StreamResult;
    import java.io.*;
    * Title:        ProjectXML
    * Description:  Test Project for XML work
    * Copyright:    Copyright (c) 2002
    * Company:
    * @author Clifton Craig
    * @version 1.0
    public class Stylizer {
      // Global value so it can be ref'd by the tree-adapter
      static Document document;
      public Stylizer()
      public static void main(String[] argv)
        if (argv.length != 2)
          System.err.println ("Usage: java Stylizer stylesheet xmlfile");
          System.exit (1);
              DocumentBuilderFactory factory =
              DocumentBuilderFactory.newInstance();
              //factory.setNamespaceAware(true);
              //factory.setValidating(true);
              try
                   File stylesheet = new File(argv[0]);
                   File datafile = new File(argv[1]);
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   document = builder.parse(stylesheet);
                   // Use a Transformer for output
                   TransformerFactory tFactory =
                   TransformerFactory.newInstance();
    //               StreamSource stylesource = new StreamSource(stylesheet);
                   StreamSource documentsource = new StreamSource(datafile);
                   DOMSource styler = new DOMSource(document);
                   Transformer transformer = tFactory.newTransformer(styler);
                   StreamResult result = new StreamResult(System.out);
                   transformer.transform(documentsource, result);
              catch (TransformerConfigurationException tce)
                   // Error generated by the parser
                   System.out.println ("\n** Transformer Factory error");
                   System.out.println(" " + tce.getMessage() );
                   // Use the contained exception, if any
                   Throwable x = tce;
                   if (tce.getException() != null)
                      x = tce.getException();
                   x.printStackTrace();
              catch (TransformerException te)
                   // Error generated by the parser
                   System.out.println ("\n** Transformation error");
                   System.out.println(" " + te.getMessage() );
                   // Use the contained exception, if any
                   Throwable x = te;
                   if (te.getException() != null)
                   x = te.getException();
                   x.printStackTrace();
              catch (SAXException sxe)
                   // Error generated by this application
                   // (or a parser-initialization error)
                   Exception x = sxe;
                   if (sxe.getException() != null)
                   x = sxe.getException();
                   x.printStackTrace();
              catch (ParserConfigurationException pce)
                   // Parser with specified options can't be built
                   pce.printStackTrace();
              catch (IOException ioe)
                   // I/O error
                   ioe.printStackTrace();
      }//End Main
    }

  • Which jar files should I use for javax.xml.transform.*?

    thanks

    You can use Apache's implementaion APIs for that. (Xalan.jar & xml-api.jar)
    http://xml.apache.org/xalan-j/trax.html

  • Which external hard drive should I use to save my iTunes library?

    Hi,
    So I have collected so much music and movies in iTunes that my internal HD is practically full.  (Library is over 500GB of 1TB and the rest is taken up with my apps and programs.)  It's time to purchase an external hard drive to transfer my library to.  Furthermore, I currently have a 2TB WD My Book for Mac that I am currently using for backup.  The My Book is also full and Time Machine is deleting the oldest backups to make room for the current ones.
    Here is where I need everyones advice.  I am planning on purchasing a 3TB WD My Book for Mac.  I am planning on purchasing more movies for iTunes.  Which external hard drive should I use for what?  Option A or B
    Option A:  Put my iTunes library on the 2TB external hard drive and use the 3TB for backup
    Option B:  Put my iTunes library on the 3TB external hard drive and continue to use the 2TB for backup
    Also please give me your reasoning.
    Thanks everyone for your responses!

    Limnos,
    So, let's go one step further with this.  I read your reply to moving iTunes library to an external hard drive: https://discussions.apple.com/thread/4594518?tstart=0  However, if I move the iTunes library, will this include all the movies and apps that I have purchased?
    Thanks!!!!

  • Which exchange 2013 setup file should I use ?

    I am seeing exchange 2013 RTM setup file for download from microsoft, as well as exchange 2013 CU3 setup file. This is my first exchange 2013 box. which file should I use to install exchange ?
    Anand_N

    Hi,
    For new installs you should usethe most current build, CU3: http://www.microsoft.com/en-us/download/details.aspx?id=41175
    Cumulative Update builds are full Exchange server installers so there is no need to install RTM version and then apply CU.
    Robert Mandziarz | IT Administrator:
    CodeTwo
    If this post helps resolve your issue, please click the "Mark as Answer" or "Helpful" button at the top of this message. By marking a post as Answered, or Helpful you help others find the answer
    faster.

  • Which jdbc driver should be used for sqlserver 2000 and where to put it.

    hi all,
    My odi is 11g. I met the error infor "Could not load JDBC driver class [com.microsoft.sqlserver.jdbc.SQLServerDriver]" when i tried to connect to a sqlserver2000 database.
    The questions are:
    1. which jdbc driver should be used for sqlserver 2000?
    2. which folder to put it in?
    3. how to set the physical topological "Microsoft Sql Server" to use this jdbc driver?
    failed tries:
    i downloaded the driver "SQL Server 2000 Driver for JDBC Service Pack 2" and put it in the following folders:
    1. .../oracledi/drivers, and set this path to CLASSPATH.
    2. .../oracledi/userlib didn't exist, i created it and put the driver in.
    3. .../oracledi/agent/dirvers, in which a readme file exists and told me to put drivers in this folder.
    All these works were not useful. when I start odi.sh and try to connect to sqlserver2000 database, the same error infor came up.
    my environment is:
    os: Linux 2.6.18-164.el5 #1 SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
    java: Java(TM) SE Runtime Environment (build 1.6.0_13-b03) Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02, mixed mode)
    ODI: 11g, installed in /users/oracle/odi/
    please help me,thanks a lot.
    jun
    帖子经 Jun编辑过

    Hi,
    You should check which JVM version is required by that version of the driver, I think the 2.x versions require a 1.6 JVM
    What error are you getting? If it is the "com.sunopsis.sql.c: No suitable driver", it indicates it can't find the jar file (sqljdbc.jar) for the driver you specify.
    Drivers folder in ODI 11g is under
    C:\oracle\product\11.1.1\Oracle_ODI_1\oracledi\agent\drivers.
    if you are using the standolone version
    On windwos :
    C:\Documents and Settings\<userName>\Application Data\odi\oracledi\userlib
    on linux
    $HOME/.odi/oracledi/userlib
    Have a read of :- http://download.oracle.com/docs/cd/E14571_01/core.1111/e16453/install.htm#CHDBIFAJ
    Thanks,
    Sutirtha

  • Which compressor preset should I use for dvdsp "2hour movie".

    Which compressor preset & settings should I use to fit a 2 hour QT movie from fcp onto 4.7gb single layer dvd in dvdsp.
    Thanks in advance,
    Zia

    The 120 Minute preset is for two hours, but you may want to bring the average down and the high rate also.
    Take a look here for some info (make use to use AC3 and not aif audio)
    http://dvdstepbystep.com/faqs_7.php
    http://dvdstepbystep.com/faqs_3.php
    http://dvdstepbystep.com/qc.php
    http://dvdstepbystep.com/fasttrackover.php

  • HT4839 Which apn setting should I use for my iphone 4 on net10

    Which apn setting should I use for iphone 4 on net10

    APN Settings for Net 10
    Cellular Data
    APN: att.mvno
    Username: (Blank)
    Password:(Blank)
    MMS (Blank)
    APN: att.mvno
    Username: (Blank)
    Password: (Blank)
    MMSC: http://mmsc.cingular.com
    MMS Proxy: 66.209.11.33
    MMS Max Size: 1048576
    MMS UA Prof URL: www.apple.com/mms/uaprof.rdf
    Type exactly whats on here on your settings.
    Procedure:
    1- Turn on your phone
    2- Get paperclip take out tray and put your non working sim card in- T-moble and simple mobile sim cards work great for me on this venture.
    3. Goto Settings>General>Cellular>Cellular Network
    At this point its very critical that you do this fast, Once you change the sim card to your net 10 the option Cellular Network will only stay on for a few seconds while it's searching for service. You will need to click on cellular once the Net10 sim card is in and click on Cellular network again.
    4. Get your paperclip take out the tray put in the Net 10 sim card
    5. Goto Cellular>Cellular Network while it's searching for service
    6. Type in your settings that I list above
    7. Scroll back to your main setting (Do not press your Home Button)
    8. Once you see your service up and running try out your web and send a picture message it should work.
    9. If it does'nt work you mistype one of the settings, it has to be exact or it wont work.
    10. Do the process all over again
    Keep this information and the sim card away for a later date in case you lose your setting I have'nt turned off my phone or let my battery die to find out if I lose my settings. One thing for sure I lost it when I update to the IOS 6.0.1.

  • Which kernel module should I use for Marvell Yukon 88E8001?

    Which kernel module should I use for Marvell Yukon 88E8001?
    a. sky2
    b. skge
    c. sk98lin

    I found this in the kernel''s /driver/net/Kconfig:
    config SKGE
    tristate "New SysKonnect GigaEthernet support"
    depends on PCI
    select CRC32
    ---help---
    This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
    and related Gigabit Ethernet adapters. It is a new smaller driver
    with better performance and more complete ethtool support.
    It does not support the link failover and network management
    features that "portable" vendor supplied sk98lin driver does.
    This driver supports adapters based on the original Yukon chipset:
    Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
    Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
    It does not support the newer Yukon2 chipset: a separate driver,
    sky2, is provided for Yukon2-based adapters.
    To compile this driver as a module, choose M here: the module
    will be called skge. This is recommended.
    Looks like your module is "skge"

  • Which jar file should i use ??

    Hi,
    Which jar file should i use to import the following:
    import org.apache.commons.lang.exception.NestableRuntimeExceptionI am getting package does not exist error.
    Please help.
    Thanks !

    one of the apache commons Jar files... make sure they're in your classpath.

  • HT3669 which driver should i use for the epson LX300 matrix-dot printer??

    which driver should i use for the epson LX300 matrix-dot printer??? I dowloaded all drivers for epson but i didn't find the driver for the LX300.
    I bought an i mac not so long ago, can anyone help me about this?

    i use parallels desktop 7 because i use a program for work with windows XP. Is there really no solution?

  • Any Idea Which Message type/Idoc Type should be used for FI Invoice

    Hi Experts,
    Any idea what message type/Idoc type should be used for FI invoice. We are going to send IDOC from R/3 to Non-SAP System using ALE. We are using T-codes FV60/FV65.
    Thanks,
    Sony

    Hi Sony,
    I never dealt with FI IDoc.
    I think you need to setup EDI outgoing payment in IMG. Please take look this report <b>RFFOALE1</b> - ALE Distribution of Payment Data and <b>RFFOEDI1</b> and check also the program documentation.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Which version of iPhoto should I use?

    When I picked up my repaired MacBook (Intel Core Duo) the person at the Apple Store showed me how to restore all of its data using my Time Machine backup.  He told me that during the repair they had installed Snow Leopard.  He had forgotten that I had told him when the MacBook first died we were told it was not worth repairing and we purchased a new MacBook Pro running Lion.  The TM backup was from that machine.  The intent was to have two machines with the same Apps & data so each of two users could take either machine and go forward from that point.  Each machine would then have its own TM Backup.
    After many discussions with tech support, almost everything except iPhoto (and incoming Apple Mail) on the MacBook works OK.  That's probably because during the restore, iPhoto 9.1.5 was installed.  It does not open because of a Frameworks conflict of some sort.  Earlier versions of iPhoto say the Library was created with a newer version.  (I temporarily moved the iPhoto Library out of my User>Pictures Folder, opened iPhoto 7.x and imported some photo's to create a new Library.  That worked.  My original Library is 35 GB so each attempt to fix anything in it has been time consuming.  That's why I'm asking the real experts.
    I've seen a suggestion from Terrance Devlin to "rebuild" the Library using the iPhoto Library Manager and others by Terrance, Neil, Old Toad, and Kappy to drag a different version of Frameworks into System>Library>?  (Apparently, some OS X 10.7 support files were loaded onto the MacBook.)  Which ones and which version?
    Which version of iPhoto should I use on the MacBook?  Which version does OS X 10.6.8 support?  Eventually, we'd also like to merge some of the individual Libraries into a shared Library.  Is iPhoto Library Manager the best way to do that?  (Speaking of that, I understand Apple does not support backup of non-Lion Mac's via Wi-Fi, except if using Time Capsule.  Seagate sells an external 2 TB Hard Drive that connects via ethernet to your Router, for that purpose.  Does it work well?)

    Terence,
    Below is a copy of the Problem Report I get after I double click the iPhoto (9.1.5) icon in my Applications folder.  Both iPhoto 6 and iPhoto 7 open but cannot read my iPhoto Library that was restored from a Lion TM backup.  I tried moving my iPhoto Library out of the Pictures folder and was able to create a new one using iPhoto 7.1.5.
    Inside of System>Library, there are two copies of the following folders:
    Frameworks
    PodcastProducer
    Keychains
    Java
    In each case, the name of the second folder includes "(from old Mac)" without the quotes after the folder name.  I believe my issue is being caused by the System using Frameworks instead of Frameworks (from old Mac), but I have not been able to switch them easily and, as you said, do not want to do serious damage.
    The only other thing that does not work properly is incoming IMAP mail via AOL and Google.  Outgoing works on those two plus Incoming and Outgoing work on the Verizon POP account.
    Here is the text from the Problem Report:
    Process:         iPhoto [1035]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-6150000~3
    App Item ID:     408981381
    App External ID: 3922231
    Code Type:       X86 (Native)
    Parent Process:  launchd [521]
    Date/Time:       2011-11-13 10:59:32.771 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          10637 sec
    Crashes Since Last Report:           55
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      1FDBF6A3-E712-44D7-B3AE-E47827AADE51
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
      Referenced from: /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    Model: MacBook1,1, BootROM MB11.0061.B03, 2 processors, Intel Core Duo, 2 GHz, 2 GB, SMC 1.4f12
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplays_integrated_vram
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x86), Atheros 5424: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3252GSX, 298.09 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-857, 7.24 GB
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0217, 0x1d200000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x5d200000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x7d100000 / 2

  • What pdf tag should I use for footnotes?

    I get involved in generating fully accessible tagged pdf's for asisstive technologies and the like. I have a doc in InDesign which uses footnotes. When I tag the document, should I map the footnotes (paragraph) style to a particular predefined pdf tag (http://www.alistapart.com/d/pdf_accessibility/PDFtags.html) and if so which one? P, STORY, NOTE....? I'm not sure and can't find any reference out there to help me.

    offtheroad wrote:
    What instrument area should I use for pulling in iTunes files to edit together, Voice, guitar, ...
    drop the files into a blank area of the timeline and GB will create a track for the files. if you want to do it manually, create a New Basic Track

Maybe you are looking for