Printer Driver wont work

I run an Epson 9800 printer on iMac 10.5.8 which has worked fine until I ran a security and bluetooth update and now it just wont see the printer at all. Ive deleted the driver and downloaded it again but when i go to Add new printer its just not showing up at all, can anyone help?

First try Reset Printing System:
http://docs.info.apple.com/article.html?path=Mac/10.6/en/14001.html
If it doesn't help, try repairing the hard drive ("Try Disk Utility"):
http://support.apple.com/kb/ts1417

Similar Messages

  • Printer Driver wont work after upgrade to 10.6

    I just updated my OS to 10.6.8 (from 10.5x), and my printer driver won't work right. I have a Samsung ML-3051ND. I wasn't able to make double-sided copies, so i downloaded and installed the latest version (supposedly 10.6 friendly) from the Samsung website. Now, whenever I try to print I get an error message saying my printer driver isn't installed correctly, please try again. I did reinstall, following the directions from the Samsung website. Still the same error message. Any suggestions would be much appreciated.

    OK, I found an answer that works on the MacRumors forum.
    In system pref>printer & faxes> on the left side, you should have a list of printers. You need to right click in the white box andreset printing system. This deletes all the printers. Then add theprinter. It worked like a champ after that.

  • Windows 7 64bit printer driver wont work

    I have a hp2600dn color laser printer that I have not been able to get to work with my windows 7 64 bit laptop.  I cannot get it to work over the network or using a USB cable with the drivers I can download from HP.  
    HELP!!!

    Hi,
    Go to Hewlett Packard  - Enter the product name / number. Be sure to check the additional information, like how to install the driver or troubleshooting guides. hope this helps you. get more information......... http://www.tomshardware.com/forum/57438-3-deskjet-1280-compatible-printer-driver-windows
    Set peace of mind as your highest goal,and organize your life around it.

  • My cd/dvd drive wont work what do i do ?

    i own a hp pavilion dm4 -3055dx. my cd/dvd drive wont work, what do i ? besides itunes freezes media player freezes. nero wont respond. how do resolve these ?

    Hello teperepc,
    Take a look at this page for trouleshooting your cd/dvd drive not working.   About those other programs - do they freeze every time you use them?  Do any other programs freeze, or just the audio/video stuff?
    Thanks,
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • I find I am unable to print any photo because the program "Can't find a theme and the Print command wont work without at least one theme. How can I overcome this problem?

    I find I am unable to print any photo because the program "Can't find a theme and the Print command wont work without at least one theme. How can I overcome this problem?

    reinstall iPhoto
    see this discussion down a few from your post
    https://discussions.apple.com/thread/5426566?tstart=0
    LN

  • HT1338 My hp photo smart printer 5514 wont work with my 10.8 software, how do I fix this ?

    My hp photo smart printer 5514 wont work with my 10.8 software, how do I fix this ?

    It's supported. Open System Preferences > Print and Scan, press + button and press your printer

  • Printer Spooler wont work even trying to start it.

    Printer Spooler has stop working for some unknown reason? Tried to get it to start, its stating it hasnt got enough resources. I went into control panel to open windows updates folder wont open and computer froze. Tried many ways to get in and I cant access
    it. I have a new Canon MX922 drivers are online for windows 8.1 wont allow me to download due to printer spooler. I'm really lost at this point..Please help?? Thank you!

    Hello Lschreiv,
    If my understanding is right, the Printer Spooler is not running, if you want to start it, it gives the error message ‘it hasn’t got enough resources’.
    Do you mean that you can’t open Control Panel\System and Security\Windows Update?
    Do you mean you can’t install the new printer driver due to the printer spooler? What error message do you receive?
    Additionally, have you made any change before this issue?
    Please take the following steps for troubleshooting:
    1. Go to Control Panel\All Control Panel Items\Troubleshooting\All Categories and run printer troubleshooter
    2. Disable the service Printer Spooler, uninstall the old printer driver, and then download and install the new printer driver
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • C# console app - print job vanishes in Windows 8 regardless of print driver used; works in Windows 7

    I have the following which sends a print file to a specific printer. It works perfectly in Windows 7, but not in Windows 8. The print job shows in the print queue until the print job is closed. Then the print job literally vanishes from the print
    queue. This issue occurs with all print drivers, including generic text only. Conversely, I can still use the "winspool.drv" DLL directly under Windows 8 and it works. Please advise. Thank you.
    Here is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.IO;
    using System.Printing;
    namespace PrinterLib
        public static class PrintToSpooler
            public static string SendFileToPrinter(string szPrinterName, string szFileName, string docName)
                try
                    // Create the printer server and print queue objects
                    //PrintQueue defaultPrintQueue = LocalPrintServer.GetDefaultPrintQueue();
                    //PrintQueue mypq = new PrintServer().GetPrintQueue(szPrinterName);
                    //using (var printq = defaultPrintQueue)
                    using (var printq = new PrintServer().GetPrintQueue(szPrinterName))
                        using (PrintSystemJobInfo job = printq.AddJob(docName))
                            using (var memoryStream = new MemoryStream())
                                FileStream fs = new FileStream(szFileName, FileMode.Open, FileAccess.Read, FileShare.None);
                                fs.CopyTo(memoryStream);
                                fs.Close();
                                Byte[] myByteBuffer = memoryStream.ToArray();
                                // Write a Byte buffer to the JobStream and close the stream
                                job.JobStream.Write(myByteBuffer, 0, myByteBuffer.Length);
                                job.JobStream.Flush();
                        printq.Commit();
                    return null;
                catch (Exception ex)
                    return ex.Message;

    Hello folks,
    I have been facing the same problem until right now. All above suggested methods failed (as it did for Jeff0123) . But after long research on that issue I think I found the reason (but no proper solution yet).
    MS Windows 8 and 2012 use a new printer driver generation based on XPS. Which means drivers like "generic text-only" won't work properly depending on the method the data is sent to the printer. In my case the
    same way like Jeff0123 tried to access the printers.
    See link http://support.microsoft.com/kb/2779300
    One solution might be to use API calls. I have also found a site which shows an example project for thermal slip printing. The VB.NET source code there features a wrapper class for all API calls. The functions you find behave pretty similar to the ones of
    the posted C# code example of Jeff0123. I did a small test so far and for my needs that works fine.
    Although the page is in German you can find the mentioned class by searching for "Public
    Class RawPrinter". Beside the comments the class methods are written in English. You find the class here: http://www.vbarchiv.net/tipps/tipp_2375-kassenbon-drucker-mit-vbnet-oder-c-per-esc-pos-befehle-ansprechen.html
    Hope that might help for at least a few of you. So long!

  • Cd drive wont work

    hello guys my cd drive on my i mac wont work, it tries to rad the disk for 2 seconds and then spits it back out, it makes no difference if its a cd or a dvd, anyone have any ideas??

    ive been experiencing the same thing. I searched the archives here to see if i could find anything similar and found only one answer that seemed to help. That ws to go to your applications. Click on disk utilities. Click on your hard drive in the left hand column and then click on verify repair. After its done shut down the computer. Then turn it back on and see if that helps with the problem. I seem to be able to have some success with this but i noticed that everytime i turn my computer off and turn it back on i have to go through the same steps again . Let me know if you do this and how it works for you . If its a permenant solution or like mine where its only temporary and you keep having to repeat the steps.

  • Fix acrobat 10.1.9 - print driver wont funtion after update

    After the 10.1.9 update in acrobat X. I can no longer print to teh print driver from other applications. It goes to print and then fails with error message in printer que.
    I've tried to reload update but no change. What to do?

    Anoop
    The error message was in the printer que and would just state " Error printing" under status.
    I think I have fixed it for now. I deleted the adobe printer listed another as my default and re ran the update. This created a new printer and I changed it back to my default printer and it has worked a couple of times so far. We'll see how long it lasts.
    This is not the first time I've had an issue like this. The adobe printer has failed several times on me in the past, mostly only failing on occasion until it gets worse to the point of not working. It's frustratng to print something and have nothing happen or maybe it will. I'm wondering now if it has been becuase of an update. Every once in a while my computer will quit printing to the adobe printer and I have to go through a blind man's redo this change that repair until it starts working again for some reason. Mostly in the past I have been able to delete and recreate the printer to get it working again. This time it wouldn't work even after fixing the update, reloading the update, re-running the update. The thing I changed when it did work was to delete the printer and list another printer as my default. When I reran the update it created a new printer that worked??????????
    So far - you are the only help I have found with this issue. I and our IT guy have spent alot of time looking for something on this issue and find nothing. If you have any light to shed on this I would appreciate it.
    Thanks

  • Help! My DVD drive wont work when i install iTunes....

    I Installed iTunes when i bought my iPod, but my Disc drive wont read any cd's when iTunes is installed. I uninstalled iTunes 4 times now and every time i uninstall iTunes amizingly my disc drive works again.
    When iTunes is re-installed it wont read any discs, music cd's movies programs or picture cd's.
    Im contemplating returning my iPod for a Zune but i really dont want to have to do that, i love my iPod...
    please if anyone can help id really appritiate it...

    I typed "install itunes, drive won't work" into the search bar in Apple support and found this:
    http://support.apple.com/kb/TS2308

  • New DVD CD combo drive wont work.

    Ok, I just installed a 8221A combo drive (manuf. 10-2006) into my ibook and tried it in my mini also, and in both computers it powers and spins, but wont read or eject (just spins, no respose to anything). I had a 8123C (01-2005) and it worked fine in both computers. do I have to update drivers or will this drive not work at all in my setups?
    I am replacing the cdrom in the ibook, so I plan on putting the new drive in the mini and the old one in the ibook, as it is harder to pull apart than the mini.
    BTW, firmware in the ibook is 4.2of4 and the mini shouldn't need any update as it's new in 07/05.

    sold it

  • After downloading the latest version of iTunes I find that my cd/dvd f drive wont work....it wont spin or start up///

    Today I downloaded the latest version of iTunes and suddenly my dvd/cd f-drive wont spin or start up..consequently I cant play or burn anything.
    My computer states that everything is fine with the drive but it obviously isnt.
    any help would really be appreciated thanks.

    See TS2308: iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install.
    tt2

  • CD-ROM drive wont work anymore

    Help!
    My CD-ROM drive doesnt work anymore...if I try to put a CD or DVD in, it doesnt automatically take it in. It goes in almost all the way and then there is a sound and it spits it out. What do I do? Where do I look for it in my system profiler to know if it is being detected? Nothing has happened bw the time it work and now...Not sure what to do. My laptop is maybe 6 months old.
    Thanks!

    Aaron..thanks for ur reply! I was hoping there was something else that could be done bc now Im afraid I may have caused the problem, although Im not sure I did bc what I think could be related to this happened after the first week I got my laptop....
    There were some posts about resetting the powerbook etc but wasnt sure if that actually worked for anyone...
    I will inquire at apple I guess too...both my ipod and my powerbook are busted after 6 m onths...makes no sense.

  • HP printer driver not working with 10.8.2

    Can anyone give me advice on how to make my all in one laserjet HP printer M2727nf work in 10.8.2.  Downloaded new driver software on January 10, since the new OS software update today again the printer is no longer connecting. 
    I have given up on the scanning function, albeit that it would be nice if it eventually would work again as well.

    Mac OS X: About the Reset Printing System feature ...
    http://support.apple.com/kb/HT1341?viewlocale=en_US
    10.5/10.6/10.7 instructions...
    In System Preferences>Fax & Print, Right click or Control+click on the Printers list Sidebar, choose Reset Printing System.
    if you hold option and click the "-" tab it resets the printing system.
    http://www.macosxhints.com/article.php?story=20031215144430486
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    Any devices that previously appeared in your Printer List and Fax List will need to be added again after resetting the printing system.
    Resetting the printing system in Mac OS X 10.5.x+++
    To use the Reset Printing System feature in Mac OS X 10.5.x, follow these steps:
    Choose System Preferences from the Apple menu.
    Choose Print & Fax from the View menu.
    Control-click on list of printers on the left side of the window, then choose "Reset printing system" from the contextual menu. If you don't see a list of printers, Control-click on the text "Click + to add a printer or fax" and select "Reset printing system..."
      As an alternative, if you currently have one or more printers listed, you can Option-click the "-" (Remove printer) button.
    http://support.apple.com/kb/ht1341
    Reboot.

Maybe you are looking for

  • How to configure Mail Alerts in SAP R/3 System.

    Hi,   I want to send mails to the users when alert occurs.How to configure that mail alers in R/3 system.pls send me the related information and links. Regards, Kiran.

  • [SOLVED]My udev rules don't automount usb device

    Hi, I'm using this .rules file for automounting usb devices: # start at sdc to ignore the system hard drive KERNEL!="sd[c-z]*", GOTO="my_media_automount_end" #sda and sdb are internal hard drives ACTION=="add", PROGRAM!="/sbin/blkid %N", GOTO="my_med

  • Verizon Ripoff Machine

    We have had a plan that included five phone numbers. Three members of our plan wanted to create their own plan with additional features. I called a Verizon representative on our about March 14, 2011, to receive instructions on how to let our three me

  • Cannot update to new iTunes - cant sync itouch with new software: help!!

    I cant update or uninstall my itunes i keep getting an error message that says "Could not access network location %APPDATA%\." please help!!!

  • Adcfgclone.pl appsTier error.

    hi all, i am getting followin error while doin clone. perl adcfgclone.pl appsTier Error while running adlnktools.sh. return code = .16.17.18.21.22.23.24.25.32.33.34.36.37.38 Please check logfile located at /erpdev1/apprt/inst/apps/RUAT_reeldev/logs/o