LaserJet 1320 is now network-attached, but Toolbox is missing information

Howdy y'all, I re-installed a LaserJet 1320 using a switch and a non-HP print server. It had been attached via USB to a user's PC (XP Pro SP3). Also updated the PCL6 driver to the latest. The printer had to be networked to support custom app updates. Now HP Toolbox sees the printer, but Device Status isn't working. The message is "Key No map value found for key = DevStatusUnrecognized_1 not found. (0)." Toolbox correctly recognizes the IP address and the name, but all the Product Information is null. About Toolbox displays the following: "Tomcat server version: 4.0.3  Java run time environment version: 1.3.1_07 1.  toolbox version: 2.59.20040315  2.  toolbox version: 3.10.20040714         Installed Devices:    - HP LaserJet 1320: 3.10.20040714" Dunno why there are 2 toolbox versions. Alerts were turned off by the user; may have been annoying. JRE 8U51 is installed. I have a feeling that Toolbox doesn't support non-HP print servers. When I click the Network button, the web server looks for http://192.168.???.???/hp/jetdirect, but there's no such page. Error thrown is "501 Method Not Implemented." This Toolbox instance is quite old. Is it really worth running? Thanks much. 

it was the linksys router I was going through - direct connection through airport and it works like a charm.

Similar Messages

  • Hp laserjet 1320 - networkin problems - networking solution

    hi
    i had the same problems like some of you with the hp laserjet 1320 n while using this printer in a network.
    here is a solution that may work:
    connect the printer directly (not via router) to the computer, reset the network settings ofthe printer (press button on the back near the rj-45 connection for 5 sec while starting the printer). wait for 5 min!!!, then print the network status (press shortly the same button onthe back of the printer). read the ip adress, which the printer had given himself. the go to safari an type in the adress. now you are getting connected to the printers settings. set the ip to dhcp an give the printer a certain number inbetween your ip range of your dhcp settings in the tc/ip (mostly 192.168.x.x). then you can disconnect an connect the printer back to the network-router.
    then print center: thrwo away old 1320 printers and search again for the 1320. this time it should work, even with the hp installed printer-description from the installation cd.
    good luck
    imac g5, pb g4, etc.   Mac OS X (10.4.7)  
    imac g5, pb g4, etc.   Mac OS X (10.4.7)  

    it works

  • Isight says now camera attached but it is

    When I turn on Ichat the green light on my isight now longer comes on. When I select video preview it is greyed out. When I unplug the camera and then put it back in it then comes alive. In the buddy list it first of all shows audio conference then changes to camera once I pull it out and then reconnect. Very frustrating . Can anyone help?

    Hi Helen,
    iChat only recognizes certain webcams. (Specifically, only those that are UVC compliant.)
    Try installing the iChatUSBCam plugin:
    http://www.ecamm.com/mac/ichatusbcam
    (There's a free demo.)
    In most cases, this will allow non-UVC cameras to work. If this doesn't help matters, plesse write back and let us know what webcam and driver you are using.
    Thanks,
    Glen

  • Check the code pls. getting attachment but some data missing

    HI all,
    PLs check the  code. I am getting mail in the attachment is having only " 12".  i am not getting 13 and 14.
    where i am doing wrong. ?
    TABLES:adr6.
    TYPES: BEGIN OF t_test,
    x(3),
    y(3),
    z(3),
    END OF t_test.
    DATA: itab TYPE STANDARD TABLE OF t_test,
    wa TYPE t_test.
    SELECT-OPTIONS : s_rcvr FOR adr6-smtp_addr LOWER CASE VISIBLE LENGTH 30
    NO INTERVALS OBLIGATORY.
    wa-x = 12.
    wa-y = 13.
    wa-z = 14.
    APPEND wa TO itab.
    *LOOP at itab INTO wa.
    WRITE:/ wa-x, wa-y, wa-z.
    *ENDLOOP.
    PERFORM send_email.
    **& Form send_email
    *text
    *--> p1 text
    *<-- p2 text
    FORM send_email .
      DATA : lo_mail_docu TYPE REF TO cl_document_bcs,
      lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
      lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL ,
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL ,
      l_oref TYPE REF TO cx_root,
      l_message_body TYPE bcsy_text VALUE IS INITIAL,
      l_message_line LIKE LINE OF l_message_body,
      l_doc_subject TYPE so_obj_des,
      l_file_subject TYPE so_obj_des,
      l_mail_subject TYPE string,
      l_text TYPE string.
      DATA itab_bin TYPE TABLE OF solix.
      CONCATENATE 'Error' ' Log ' INTO l_doc_subject SEPARATED BY space.
      l_mail_subject = l_doc_subject.
      CALL FUNCTION 'SCMS_TEXT_TO_BINARY'
        TABLES
          text_tab   = itab
          binary_tab = itab_bin.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CONCATENATE 'Attached is the' 'log file generated '
      INTO l_message_line-line SEPARATED BY space.
      APPEND l_message_line TO l_message_body.
      APPEND '' TO l_message_body. APPEND '' TO l_message_body.
      TRY.
          lo_mail_docu = cl_document_bcs=>create_document(
          i_type = 'RAW'
          i_text = l_message_body
          i_subject = l_doc_subject ).
          lo_mail_docu->add_attachment(
          EXPORTING
          i_attachment_type = 'TXT'
          i_attachment_subject = l_file_subject
          i_att_content_hex = itab_bin ).
          lo_send_request = cl_bcs=>create_persistent( ).
          CALL METHOD lo_send_request->set_message_subject
            EXPORTING
              ip_subject = l_mail_subject.
          LOOP AT s_rcvr .
            lo_recipient = cl_cam_address_bcs=>create_internet_address( s_rcvr-low ).
            lo_send_request->add_recipient(
            EXPORTING
            i_recipient = lo_recipient
            i_express = '' ).
          ENDLOOP.
          lo_send_request->set_document( lo_mail_docu ).
          lo_send_request->set_send_immediately( 'X' ).
          lo_send_request->send( ).
        CATCH : cx_send_req_bcs INTO l_oref,
        cx_document_bcs INTO l_oref,
        cx_address_bcs INTO l_oref.
      ENDTRY.
      COMMIT WORK.
      FREE : lo_mail_docu, lo_send_request, lo_sender, lo_recipient, l_oref.
      REFRESH : l_message_body, itab_bin.
      CLEAR : l_message_line, l_doc_subject, l_mail_subject, l_file_subject,
      l_text.
    ENDFORM.                    "send_email
    Thanks
    krupali

    HI Jelena,
    I think we cannot commenting the
    CALL FUNCTION 'SCMS_TEXT_TO_BINARY'  because we are transfering the data in binary format.
    Have you got the mail with full ITAb data ?
    have you tried it ?
    I have tried by commenting the
    CALL FUNCTION 'SCMS_TEXT_TO_BINARY'  but getting syntax error.
    Any other idea please  ?
    Thanks in advance
    krupali.

  • HP LaserJet 1320 requires user intervention to print after Leopard

    Ever since upgrading to Leopard, almost every single time I send a print job to my HP LaserJet 1320 (over the network, it actually connected to a PowerMac G5 in my office), it triggers an error warning (orange flashing light) on the printer. Pressing the main green print button lets the job print, but this is really annoying.
    I checked and Apple recently posted a note about the HP LaserJet 1200 having a very similar problem except that an error page was printed after each job. The workaround they suggest for this doesn't work with the LaserJet 1320 problem, however.
    A quick Google reveals at least one other Leopard using HP LaserJet 1320 owner is seeing a similar issue. And actually, as I composed this post, I found some 1320 owners in another Apple Discussion post about HP printer issues with Leopard. They suggested using the generic PostScript driver, but then I really like to have the ability to duplex.
    Nothing in the /private/var/log/cups/error_log file of note as far as I can tell.
    Any ideas? Any other people out there experiencing this problem who might have a solution (other than switching to a generic postscript driver)?

    Ok, I think I've figured a way to make the laserjet 1320 stop requiring "user intervention" (e.g. pressing the green button for every printjob).
    Try the following:
    Open "System Preferences" -> Choose "Print & Fax" -> Choose the Laserjet 1320 printer -> Press button "Options and Supplies..." -> Select Driver "tab" -> In the drop-down-menu "Fit to page" choose "Nearest Size and Scale" instead of "Prompt User".
    The chosen driver should be "HP Laserjet 1320 series", because the generic postscript printerdriver dosen't have the duplex option amongst other shortcomings.
    I find it odd that the lowest memory-option is 16-31mb of ram. The default configuration of 16mb is not IN that range, but maybe that is a little too nitty-gritty.
    ~ Jørgen

  • Laserjet 1320 on win 7 (64bit) - cannot access from a networked XP Pro machine?

    I have a Laserjet 1320 and a Officejet 6450 attached to a win 7 (64bit) machine - both work fine.
    Have a home workgroup network established with an XP pro machine.  Both printers are "shared" etc..
    I can access the Offiejet from the XP machine, but cannot get access to the Laserjet.  Claims that
    the proper Driver cannot be located.  Have downloaded the PCl5 driver to the Win 7 machine, but when
    I point the XP machine to the HP PCL5 Driver folder on the win 7 machine it still cannot find the proper driver.
    Any help will be appreciated.

    Hi Don
    Thanks for the reply.
    The version of Visual Studio being used is 2002 (getting on a bit now).
    We had a play about with the way we installed the MSI installer we had created that installs the Crystal Reports runtimes (merge modules) and managed to get it to work on both Windows 7 32bit and 64bit.
    The solution was a weird one, but seemed to work (but was different to what I had done before to get it to work).  We made sure the MSI was local on the PC and right-clicked the MSI and selected the ''Troubleshoot Compatibility' ' option.  Not 100% why this would work, but it seems to have done the trick.
    Many thanks for your help.
    David.

  • I want a new and more powerful (non-Apple) wireless router but I still want to use my existing Time Capsule to continue with my Time Machine backups and I still need the Time Capsule's Network Attached Storage (NAS) features and capabilities

    THE SHORTER STORY
    My goal is to successfully use my existing Time Capsule (TC) with a new and more powerful wireless router. I need a new and more powerful wireless router in order to reach a distant Denon a/v receiver that is physically located in a master bedroom some 50 feet away from my modem. I need to provide this Denon a/v receiver with an Internet connection so that it can obtain its firmware updates and I need to connect this Denon a/v receiver to my network in order to use its AirPlay feature. I believe l still need the TC's Network Attached Storage (NAS) features because I am not sure if the new wireless router will provide me with the NAS like features / capabilities I need to share files between my two Apple laptops with OS X 10.8.2. And I know that I absolutely need my TC's seamless integration with Apple's Time Machine (TM) application in order to continue to make effortless backups of my two Apple laptops. To my knowledge nothing works with TM like Apple's TC. I also need the hard disk storage space built into the TC.
    I cannot use a long wired Ethernet cable connection in this apartment and I cannot use power-line adapters. I have read that wireless range extenders and repeaters are difficult to successfully set-up and that they will reduce data speeds, especially so when incorrectly set-up. I cannot relocate my modem and/or primary base station wireless router.
    In short, I want to use my TC with my new and more powerful wireless router. I need to stop using the TC to connect to the modem. However, I still need the TC for seamless TM backups. I also need to use the TC's built in hard drive for storage. And I may still need the TC's NAS capabilities to share files wirelessly between laptops because I am assuming the new wireless router will not provide NAS capabilities for OS X 10.8.2 (products like this/non-Apple products rarely seem to work with OS X 10.8.2/Macs to provide NAS features and capabilities). Finally, I want to continue to use my Apple laptop and AirPlay to wirelessly access and play my iTunes music collection stored on the TC's hard drive. I also want to continue to use my Apple laptop, AirPlay and Apple TV to wirelessly watch movies and TV shows stored on the additional external hard drive connected to the TC via USB. Can someone please advise on how to set-up my new Asus wireless router with my existing TC in such a way to accomplish all of this?
    What is the best configuration or set-up to accomplish my above goals?
    Thank you in advance for your assistance!!!
    THE FULL STORY
    I live in an apartment building where my existing Time Capsule (TC) is located in my living room and serves many purposes. Specially, my TC is at least all of the following:
    (1) Wi-Fi router connected to Comcast Internet service via Motorola SB6121 cable modem - currently the TC is the Wi-Fi base station that connects to the modem and has the gateway address to the Internet. The TC now provides the DHCP service for the Wi-Fi network.
    (2) Wireless router providing Internet and Wi-Fi network access to several Wi-Fi clients - two Apple laptop computers, an iPod touch, an iPad and an iPhone all connect wirelessly to the Internet via the TC.
    (3) Wired Ethernet router providing Internet and Wi-Fi network access to three different devices - a Panasonic TV, LG Blu-Ray player and an Apple TV each use one of the three LAN ports on the back of the TC to gain access to the Internet.
    (4) Primary base station in my attempt to extend my wireless network to a distant (located far away) Denon a/v receiver requiring a wired Ethernet connection - In addition to the TC, which is my primary base station, I am also using a second extended Wi-Fi base station (a Netgear branded product) to wirelessly extend my WiFi network to a Denon receiver located in the master bedroom and requiring a wired Ethernet connection. I cannot use a wired Ethernet connection to continuously travel from the living room to the master bedroom. The distance is too great as I cannot effectively hide the Ethernet cable in this apartment.
    (5) Time Machine (TM) backup facilitator - I use my TC to wirelessly back-up two Apple laptops using Apple's Time Machine (TM) application. However, I ran out of storage space on my TC and therefore added external storage to it. Specifically, I added an external hard drive to my TC via the USB port on the back of the TC. I now use this added external hard drive connected to the TC via USB as the destination storage drive for my TM back-ups. I have partitioned the added external hard drive, and each of the several partitions all have enough storage space (e.g., each of the two partitions used by TM are sized at three times the hard drive space of each laptop, etc.). Everything works flawlessly.
    (6) Network Attached Storage (NAS) - In addition to using the TC's Network Attached Storage (NAS) capabilities to wirelessly back-up two Apple laptops via TM, I also store other additional files on both (A) the hard drive built into the TC and (B) the additional external hard drive connected to the TC via USB (there are additional separate partitions on this drive for these other additional and non-TM backup files).
    I use the TC's NAS feature with my Apple laptop and AirPlay to wirelessly access and play my iTunes music collection stored on the TC's hard drive. I also use my Apple laptop, AirPlay and Apple TV to wirelessly watch movies and TV shows stored on the additional external hard drive connected to the TC via USB. Again, everything works wirelessly and flawlessly. (Note: the Apple TV is connected to the network via Ethernet and a LAN port on the back of the TC).
    The issue I am having is when I try to listen to music via Apple's AirPlay in the master bedroom. This master bedroom is located at a distance of two rooms away from the TC's current location in the living room, which is a distance of about 50 feet. This apartment has a long rectangular floor plan where each room is connected to the next in a straight line. In order to use AirPlay in the master bedroom I am using a second extended Wi-Fi base station (a Netgear branded product) to wirelessly extend my WiFi network to a Denon receiver located in the master bedroom and requiring a wired Ethernet connection. This additional base station connects wirelessly to the WiFi network provided by my TC and then gives my Denon receiver the wired Ethernet connection it needs to use AirPlay. I have tried moving my iTunes music directly onto my laptop's hard drive, and then I used AirPlay on this same laptop to connect to the Denon receiver. I always get a successful connection and the song plays, but the problem is that the connection inevitably drops.
    I live in an apartment building and all of the many wireless routers in this building create a great deal of WiFi interference on both the 2.4 GHz and 5GHz bands. I have tried connecting the Netgear product to each the 2.4 and 5 GHz bands, but neither band can successfully maintain a wireless connection between the TC and the Netgear product. I also attempted to maintain a wireless connection to an iPod touch using the 2.4 GHz band and AirPlay on this iPod touch to play music on the Denon receiver. Again, I was able to establish a connection and successfully play music, but after a few minutes the connection dropped and the music stopped playing. I therefore have concluded that I have a poor wireless connection in the master bedroom. I can establish a connection, but it is intermittent with frequent drops. I have verified this with both laptops by working in the master bedroom for an entire day on both laptops. The Internet connection in this master bedroom proved to drop out frequently - about once an hour with the laptops. The wireless connection and the frequency of its dropout are far worse with the iPod touch and an iPhone.
    I cannot relocate the TC. Also, this is an apartment and I therefore cannot extend the range of my network with Ethernet cable (I cannot drill through walls/ceilings, etc.). It is an old building with antiquated wiring and power-line adapters are not likely to function properly, nor can I spare the direct power outlet required with a power-line adapter. I simply need every outlet I can get and cannot afford to block any direct outlet.
    My solution is to use a more powerful wireless router. I found the ASUS RT-AC66U Dual-Band Wireless-AC1750 Gigabit Router which will likely provide a better connection to my wireless Internet in the master bedroom than the TC. The 802.11ac band of this Asus wireless router is totally useless to me, but based on what I have read I believe this router will provide a stronger connection at greater distances then my TC. And I will be ready for 802.11ac when it becomes more widely available.
    However, I still need to maintain the TC's ability to work seamlessly with TM to backup my two laptops. Also, I doubt the new Asus router will provide OS X 10.8.2 with NAS like features and capabilities. Therefore, I still would like to use the TC's NAS capabilities to share files on my network wirelessly assuming the Asus wireless router fails to provide this feature. I need a new and more powerful wireless router, but I need to maintain the TC's NAS features and seamless integration with TM. Finally, I want to continue to use my Apple laptop and AirPlay to wirelessly access and play my iTunes music collection stored on the TC's hard drive. I also want to continue to use my Apple laptop, AirPlay and Apple TV to wirelessly watch movies and TV shows stored on the additional external hard drive connected to the TC via USB. Can someone advise on how to set-up my existing TC with this new Asus wireless router in such a way to accomplish all of this?
    Modem
    Motorola SB6121 SURFboard DOCSIS 3.0 Cable Modem
    Existing Wireless Router and Primary Wi-Fi Base Station - Apple Time Capsule
    Apple Time Capsule MC343LL/A 1TB Sim DualBand (purchased June 2010, likely the Winter 2009 Model)
    Desired New Wireless Router and Primary Wi-Fi Base Station - Non-Apple Asus
    ASUS RT-AC66U Dual-Band Wireless-AC1750 Gigabit Router
    Extended Wi-Fi Base Station - Provides an Ethernet Connection to a Denon A/V Receiver Two Rooms Away from the Modem
    Netgear Universal Dual Band Wireless Internet Adapter for TV & Blu-Ray (WNCE3001)
    Addition External Hard Drive Attached to the Existing Apple Time Capsule via USB
    WD My Book Studio 4TB Mac External Hard Drive Storage USB 3.0
    Existing Laptops on the Wireless Network Requiring Time Machine Backups
    MacBook Air (11-inch, Mid 2012) OS X 10.8.2
    MacBook Pro (13-inch Mid 2010) OS X 10.8.2
    Other Existing Apple Products (Clients) on the Wireless Network
    iPod Touch (second generation) is model A1288.
    iPad (1st generation)
    Apple TV (3rd generation) - Quantity two (2)

    Thanks Bob Timmons.
    In regards to a Plan B, I hear ya brother. I am already on what feels like Plan Z. Getting WiFi to a far off room in an apartment building crowded with WiFi routers is a major pain.
    I am basing my thoughts on the potential of a new and more powerful router reaching the far off master bedroom based on positive reviews on cnet.com, pcmag.com and pcworld.com. All 3 of these web sites have reviewed the Asus RT-AC66U 802.11AC wireless router as well as its virtual twin cousin 802.11n router. What impressed me is that all 3 sites rated this router #1 overall in terms of both range and speed (in both the 802.11n and 802.11AC flavors). They tested the router in real world scenarios where the router needed to compete with a lot of other wireless routers. One of the sites even buried this Asus router in a media room with thick walls and inside a media cabinet. This Asus router should be able to serve my 2.4 GHz band wireless clients (iPod Touch and iPhone 4) with a 2.4GHz Wireless-N band offering some 50 feet of dependable range and a 60 Mbps throughput at that range. I am hoping that works, but it's borderline for my master bedroom. My 5 GHz wireless clients (laptops) will enjoy a 5GHz Wireless-N band offering 150 feet of range and a 200 Mbps throughput at that range. I have no idea what most of that stuff means, but I did also read that Asus could reach 300 feet and I got really excited. My mileage may vary of course and I'm sure I'm making some mistakes in my interpretation of their data. However, my Winter 2009 Time Capsule was rated by cnet.com to deliver real world performance of less than that, and 802.11AC may or may not be useful to me someday. But when this Asus arrives and provides anything other than an excellent and consistent wireless signal without drops in the master bedroom it's going right back!
    Your solution sounds great, but I have some questions. I'm using OS X 10.8.2 and Airport Utility (version 6.1 610.31) and on its third tab labeled "Wireless" the top option enables you to set "Network Mode" to either:
    Create a wireless network
    Extend a wireless network
    Off
    Given your advice to "Turn off the wireless on the TC," should I set Network Mode to Off? Sorry, I'm clueless in regards to how to turn off the wireless on the TC any other way. Can you provide specific steps on how to turn off the wireless on the TC? If what I wrote is correct then what should the rest of this Wireless tab look like, or perhaps it is irrelevant when wireless is off?
    Next, what do you mean by "Configure the TC in Bridge Mode?" Under Airports Utility's fourth tab labeled "Network" the top option "Router Mode" allows for either:
    DHCP and Nat
    DHCP Only
    Off (Bridge Mode)
    Is your advice to Configure the TC in Bridge Mode as simple as setting Router Mode to Off (Bridge Mode)? If yes, then what should the rest of this "Network" tab look like? Anything else involved in configuring the TC in Bridge Mode or is it really as simple as setting the Router Mode to "Off (Bridge Mode)"?
    How about the other tabs in Airport Utility, can they all stay as is assuming I use the same network name and password for the new Asus wireless router? Or do I need to make any other changes to the TC via Airport Utility?
    Finally, in regards to your Plan B suggestion. I agree. But do you have a Plan B for me? I would greatly appreciate any alternative you could provide. Specifically, if you needed a TC's Internet connection to reach a far off corner of your home how would you do it? In the master bedroom I need both a wired Ethernet connection for the Denon a/v receiver and wireless Internet connection for the iPhone and iPod Touch.
    Power-Line Adapters - High Cost, Blocks at Least One Wall Outlet and Does Not Solve the Wireless Need
    I actually like exactly one power-line adapter, which is the D-Link DHP-540 PowerLine AV 500 4-Port Gigabit Switch. This D-Link power-line adapter plugs into your wall outlet with a normal sized plug (regular standard power cord much like any other electronic device) instead of all of the other recommended power-line adapters that not only use at least one wall outlet but also often block the second outlet. You cannot use a power strip with a power-line adapter which is very impractical for me. And everything about my home is strange and upside down. The wiring here is a disaster and I don't have faith in its ability to carry Internet access from the living room to the master bedroom. And this D-Link power-line adapter costs $90 each and I need at least two to make the connection to the Denon A/V receiver. So, $180 on this solution and I still don't have a dependable drop free wireless connection in the master bedroom. The Denon might get its Ethernet Internet connection from the power-line adapter, but if I want to use an iPhone 4 or iPod Touch to stream AirPlay music to the Denon wirelessly (Pandora/iTunes, etc.) from the master bedroom the wireless connection will not be stable in there and I've already spent $190 on just the two power-line adapters needed.
    Extenders / Repeaters / Wirelessly Extending the Wireless Network
    I have also read great things about the Amped Wireless High Power Wireless-N 600mW Gigabit Dual Band Range Extender (Repeater) SR20000G and the My Net Wi-Fi Range Extender. The former is very powerful and the latter is easier to install. Both cost about $150 ish so similar to a new Asus router. However, everything I read about Range Extenders points to them not being very effective for a far off corner of your house wherein it's apparently hard to place the range extender in the sweet spot where it both gets a strong enough signal to actually effectively extend the wireless signal and otherwise does not reduce network throughput speeds to unacceptable speeds.
    Creating a Roaming Network By Hard Wiring with Ethernet Cable - Wife Would Say, "**** No!"
    Even Apple seems to warn against wirelessly extending your network (see: http://support.apple.com/kb/HT4145#) and otherwise strongly recommends a roaming network where Ethernet cable is used to connect two wireless base stations. However, I am in an apartment where stringing together two wireless base stations with Ethernet cable would have an extremely low wife acceptance factor (WAF). I cannot (both contractually and from a skill prospective) hide Ethernet wire in the walls or ceiling. And having visible Ethernet cable running from room-to-room would be unacceptable, especially to the wife.
    So what is left? Do you have a Plan B for me? Thanks in advance for your help!

  • Windows 7 system cannot network print to LaserJet 1320

    Recently our office got a new Windows 7, 64-bit laptop, and for the past three days I have been unable to get it to print though the network to our HP LaserJet 1320. I can connet it via the USB cable and print directly to the printer, however, I recive an "unalbe to connect" error with all attempts to connect to the printer through the network .
    The LaserJet 1320 is conncected to an XP system and shared over the network. Three other XP systems and two Linux systems can connect and print to it just fine.  Also the Windows 7 laptop has been able to print to a shared HP DeskJet 6980 and an ancient Lexmark 4039 though the network. 
    It does not appear to be a network issue. I've tried varous versions of the HP Universal Printing driver, but so far not has been able to connect though the network. Is there  one in particualr I should try? Does the Universal printing driver not support network printing?
    Thanks! Any help with this probelm will be greatly appreciated. 

    Never mind solved my issue using the specific vista x64 (on windows7) driver rather then using the universal print driver...
    Might fix your issue with network shared printer.

  • HP LaserJet 1320 Not Showing Up On Network

    I just added a pc with windows xp professional service pack 3 to my airport express network. The internet works but when I go to load my HP LaserJet 1320 print drivers from the installation cd the setup wizard can't find the printer on the network. My mac can see the printer just fine. Help!

    Just to be clear, is this the Bonjour Printer Wizard?

  • Iphoto allows you to share photos by selecting them and then emailing as an attachment.  I'm not able to do that now, curser isn't appearing in the email address box when I attempt to address my email.  Photos are attaching but not able to include an addr

    iphoto allows you to share photos by selecting them and then emailing as an attachment.  I'm not able to do that now, curser isn't appearing in the email address box when I attempt to address my email.  Photos are attaching but not able to include an address.

    Windows Phone 8.1 is so full of surprises and opens the Windows Phone faithful up to a new world of apps.
    Video editors and
    file managers are just some of the new app categories possible thanks to Windows Phone 8.1. We’ve seen an official video editing app from Microsoft already, but today we finally get Files – the official file manager for Windows Phone.

  • Laserjet 1320 Toolbox software will not install on Windows 7

    I bought this 1320 for my xp and the toolbox worked fine. Bought a Windows 7 and the same software fails to install. Running setup and it says there is some kind of java error. i have java installed, use it all the time and it works fine. I try to install the software using other 'exe' or 'setup' files and it tells me to use the windows drivers. The printer works fine, but I want the toolbox to tell me ink level.
    update: I finally found the "ini" setup and windows 7 is not supported. So, is there anyway to get new s/w for W7?

    If you have a 1320n, then the easiest way to check your ink level would be the Embedded web server (EWS). Put your IP address into your browser and this will take you to the EWS. From there you will be able to check the ink levels of your printer.
    Otherwise, toolbox is not available for the windows 7 OS.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • I bought a camera connection kit. First time it worked fine, using the USB connector, but now neither the USB or SD connector works. The iPad shows a connector is attached, but Photos doesn't open. Any ideas? thanks

    I bought a camera connection kit. First time it worked fine, using the USB connector, but now neither the USB nor SD connector works. The iPad shows a connector is attached, but Photos doesn't open. Any ideas? thanks

    If you have not done so, try exiting the Photo app (and maybe more apps if you have a lot open) from the Open Apps List and see if a discount/reconnect opens the app. If that does not work, try powering down the iPad and test. If it is still not working try a hard reset by pressing both Home and Sleep/Wake buttons at the same time until the Apple graphic appears, ignoring the Slide to Power Off button.

  • I cannot send a text message now without attaching a picture, I could before but ever since I attached one pic it will not let me just send text

    I cannot send a text message now without attaching a picture, I could before but ever since I attached one pic it will not let me just send text

    Settings>Messages>Show Subject Field>Off.

  • I installed the latest version of iTunes on my Windows XP.  I can launch it but it won't connect to the store because it says I don't have a network connection but I do because I'm on the internet right now!  Help!

    I installed the latest version of iTunes on my Windows XP.  I can launch it but it won't connect to the store because it says I don't have a network connection but I do because I'm on the internet right now!  Help!

    The requirement shoul be on the box the iphone came in.  they are also on the website
    Syncing with iTunes on a Mac or PC requires:
    Mac: OS X v10.6.8 or later
    PC: Windows 7; Windows Vista; or Windows XP Home or Professional with Service Pack 3 or later
    iTunes 10.7 or later (free download from www.itunes.com/download)"

  • CAN'T PRINT ON LASERJET 1320 EVEN THOUGH IT SHOWS AS ONE OF MY NETWORKED PRINTERS

    I have a Laptop running Windows 7 64. I have two printers in my office A Laserjet 1320  connected directly to an XP desktop and a Photosmart 6180  They show in the printers list on my laptop as   Laserjet 1320PCL on 192......etc   and  Photosmart C6100 on 192....(same number as Laserjet, ) If I select the C6100 printer it prints out correcly.  If I choose the Laserjet1320 nothing happens. Any suggestions to correcting this problem would be appreciated, 

    Thanks for sharing that info, this will be really useful if others would ever run into the same issue.
    Audere est facere

Maybe you are looking for