What is the right "class driver" for my EPSON printer Aculaser CX 21N ?

Please let me know the correspondence between the EPSON class drivers proposed in the "Bonjour Print Services" tool (a lot of the EPSON class drivers seems to be identical) and the EPSON "Bonjour Printer Name" AL-CX21-3FD57B (IP) and (PostScript) (my printer).
Notes :
Before with Windows 7 that works properly => now - after my migration to "Windows 8 professional" - that don't works anymore !
"Apple Care" tell me first to completely uninstall and reinstall all the following programs: iTunes, QuickTime, Apple Software Update, Apple Mobile Device support, Bonjour and Apple Application Support => that's what I also do in full accordance with the Apple article HT1923 dated 2013, 21 February !
I tried to active my Printer through the disk received with my printer => no chance the systems tell me that I have no enough access right to do that !
I also found in the "Information - Network" of my above mentionned printer the following data under "Entity Type":
LaserWriter
EPSONPCL5C
EPSONPCLXL
EPSONPAGES3

I also have an Epson printer. You indicated that you already downloaded an updated driver from Epson's website. Did you also downloaded the one(s) that came w/the Epson CD? However, you did not mention that you repaired permissions & restarted after the installation.
If the above was not done, then I suggest that you do so. Hopefully, this should solve your problem.
I just checked the Epson folder in my HD & your model printer is NOT listed among them.

Similar Messages

  • What is the right HD drive for the new (2008) mac pro

    what's exactly the difference between Sata I, Sata II, sata 150, sata 300, sata 3gb ???
    what drive's should i use in the new mac pro ? any advice / clearification would be great !

    Thats a very good drive, I've been using them in Sony Vaios and laptops for years in various forms and they are blazing fast, never had one problem with them.
    I think they have software on the website which lets you config the drive for acoustically quieter operation or 'full bore' speed. Been awhile since I've bought one so maybe thats not available anymore.

  • What's the right OTN-forum for questions on ADF?

    Hi,
    my question? Look at the subject...
    "What's the right OTN-forum for questions on ADF?"

    this... :)

  • What's the best Hard Drive for TM? USB or FIrewire?

    What's the best Hard Drive for TM? USB 2.0 or FIrewire 400 or 800?
    Any recommendations would be great. Need about 1TB.

    Michael Conniff wrote:
    The most recent is 1TB, and cost about the same as the previous one which was 500GB. The first d2 was only a little cheaper and was 60GB!
    Same experience here! They keep the price about the same but you get double the storage, so the price of storage has been going down big time! But now I find myself ******* after Drobo Hey, that editor whacked me for "l u s t i n g" that isn't foul language is it?
    -mj
    Message was edited by: macjack

  • What's the best hard drive for my 2008  24" I Mac

    Hello I have a question about I Mac .
    What's the best hard drive for my 2008  24" I Mac Intel ?
    I use to have a WD3200AAJS but it's dead now , and I would like to upgrade to  a good one does any body know what I can get ?

    http://www.seagate.com/external-hard-drives/portable-hard-drives/wireless/wirele ss-plus/?cmpid=ppc-_-satellite-_-g-_-us-_-ipad_hard_drive-_-p
    http://wd.com/whatsonyourdrive/?utm_campaign=Q2_2012_MBL_UK&utm_medium=Online_Se arch&utm_source=&utm_content=&gclid=CNa9n-_alrcCFUkw4Aod7nkAwg

  • What is the max hard drive for a late 2006 xserve?

    What is the max hard drive for a late 2006 xserve?

    Hi Kappy,
    That's not quite true. I don't think anyone has managed to get a 3TB drive working as 3TB on an Xserve yet.. Here is the official compatibility matrix from Apple http://support.apple.com/kb/HT1219
    2TB seems to be the limit. Some people have had success with non Apple drives but it's very hit and miss..
    All the best
    Beatle

  • What is the Popup class used for

    I always thought that a Popup should have some basic functionality, such as the pupup should close when:
    a) the escape key is pressed
    b) the popup loses focus
    The popup class provides none of the above functionality and in     fact seems to require some obscure code to
    even get the keyboard focus to work properly.
    Using a JWindow seems to provide the same functionality as a Popup.
    JPopupMenu seems to support both of the above requirements.
    Run the following program:
    a) click on each of the buttons
    b) click on an empty part of the frame
    It appears to me that whenever you need a "popup" you should use a JPopupMenu.
    Is the Popup class good for anything? Does it provide any functionality that I am not aware of?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class PopupTest extends JFrame
         String[] numbers = { "one", "two", "three", "four", "five" };
         public PopupTest()
              getContentPane().setLayout( new FlowLayout() );
              JButton popup = new JButton("Popup as Popup");
              popup.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        popupPopup(e);
              getContentPane().add(popup);
              JButton window = new JButton("Window as Popup");
              window.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        windowPopup(e);
              getContentPane().add(window);
              JButton menu = new JButton("PopupMenu as Popup");
              menu.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        menuPopup(e);
              getContentPane().add(menu);
         private void popupPopup(ActionEvent e)
              JList list = new JList(numbers);
              list.setSelectedIndex(0);
              PopupFactory factory = PopupFactory.getSharedInstance();
              Popup popup = factory.getPopup(this, list, getLocation().x, getLocation().y);
              popup.show();
              Window window = SwingUtilities.windowForComponent(list);
              if (window != null)
                   window.setFocusableWindowState(true);
              KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent(list);
         private void windowPopup(ActionEvent e)
              JList list = new JList(numbers);
              list.setSelectedIndex(0);
              JWindow window = new JWindow(this);
              window.getContentPane().add(list);
              window.pack();
              window.setVisible(true);
              window.setLocation(getLocation().x + 200, getLocation().y);
         private void menuPopup(ActionEvent e)
              JList list = new JList(numbers);
              list.setSelectedIndex(0);
              Component c = (Component)e.getSource();
              JPopupMenu menu = new JPopupMenu();
              menu.add(list);
              menu.show(c, 0, 0);
              list.requestFocusInWindow();
         public static void main(String[] args)
              PopupTest frame = new PopupTest();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setSize(500, 200);
              frame.setLocationRelativeTo( null );
              frame.show();
    }

    you'd use Popup like JPopupMenu does, via a PopupFactoryYes you can get the Popu from the PopupFactory, but I think you are missing the point of my question. Popup has two methods, hide/show. It provides no other funtionality. I must write code to handle the escapce key and close the popup when it loses focus.
    When I use a JPopupMenu and add a component to the menu, it appears to add some listeners to the component to handle the escape key and loss of focus.
    I think it's safe to say that you're right when you say that it's preferable to use
    JPopupMenu (my experience as well).That was my conclusion, but I was just wondering it I was missing anything.
    It turns out that there are used in tooltips which, by essence, don't need any
    input from the user (whether keyboard or mouse) I guess thats what I was missing, only use a Popup in tooltip type situations.

  • Re: Satellite A660-12P - can't find the right display driver for Win XP

    Hey everyone, i need some help with this one:
    I just made a dual boot Win7 (x64)/XP (x86) on my laptop, but i can't find the right display drivers for the video controller VGA compatible on XP.
    Does someone know where i can find them?
    Many thanks,

    Yes, you get this message because you cannot install the nVidia rivers only executing the exe file.
    If you want to install such drivers then you have to do this in device manager.
    You have to force the notebook to choose the driver
    You can do this choosing the advanced installation procedure which helps you to point to the driver files!
    PS: might be helpful:
    http://forums.computers.toshiba-europe.com/forums/ann.jspa?annID=78

  • What is the prefered hard drive for Mac Pro 1.1?

    Hello everyone, I want to fill the 4th Mac Pro Raid hard drive. I want to know the best hard drive out there and the maximum capacity I should buy. The computer came with 3 hard drives 750.16 each. Thank you for help!
    Mac OS X/10.6.8/2x3 GHz dual-core Intel Xeon/13 GB 667 MHz DDR2 FB-DIMM

    4TB if you want max size. There is no max and it all depends on what you do.
    Not sure but "pro raid" better not  be Apple RAID controller as that does have limits and problems and not  sure you  use and need RAID5 controller.
    I'd say WD 10K 1TB VelociRaptor as "best in class" outside of SAS
    WD Black 2TB for cost size performance or 4TB new $300 for max
    WD Black line has been used by users and Apple for OEM and 1TB model
    When doing RAID or RAID5 I would use the old drives for backup and replace all four.
    And keep the boost drive on SSD ($100 Samsung 840, or 10K WD VR 250GB)  or 500GB WD VR $139, great little and fast.  Samsung 840 240GB is also gotten affordable-ish. Nice larger boot drive.
    I went with 8x2GB for $130 now from Amazon for FBDIMMs.
    And ATI 5770.

  • What is the right AppleCare ref for MB Pro Retina 15"

    Hi,
    I have a MB Pro Retina 15" Mid 2012.
    PROCESSOR 2.3GHz Quad-core Intel Core i7
    MEMORY 16GB 1600MHz DDR3L SDRAM
    FLASH STORAGE 256GB Flash Storage
    Mini DisplayPort to VGA Adptr No VGA Adapter
    Apple Thunderbolt to Enet Adpt Apple Thunderbolt to Enet Adpt KEYBOARD AND DOCUMENTATION KYBD/USER'S GUIDE-FRA COUNTRY KIT COUNTRY KIT-INT
    Serial Number :  C02HX0YKDKQ4
    I don't plan to buy directly on internet nor on an AppleStore, and my problem is to find the right AppleCare plan.
    I see that there's many AppleCare reference for MB Pro Retina 15" , for instance MD013ZM/A or MC259ZM/A.
    I don't want to buy a wrong AppleCare part.
    Thanks for your  help.
    ADS

    Thanks for your reply.
    What is the difference between MD012LL/A and the other since both cover the Retina one if I'm not wrong ?

  • The right external drive for my configuration

    I am looking to get an external hard drive for backup purposes and also to extend the storage space of a sorely limited Powerbook G3. It has a 6GB hard drive. In other words, you can't use it for anything except the internet and a few documents!
    I've done some research but am no closer to figuring out what drive would be best for me. The thing is, I need the convenience of a portable because I'll be using it for backup with all 3 of the computers in different places in the house (an iBook G4, a Powerbook G3, and an iMac G3). But because I'll be using it for 3 computers and want to store bootable clones of at least my iBook's 60GB drive and the iMac's 20GB drive, I need more storage space than I've seen in portables. I also need to be able to run applications off it for the Powerbook.
    I don't think I can afford to get more than one drive, especially since portables seem pretty pricey. I'd really rather not spend more than $150 and definitely not more than $200.
    Anyone have any suggestions for the best solution?

    Hi amybl,
    You can get a portable 120-160GB firewire/USB drive for less than you think. OWC's drives are rated highly too.
    http://eshop.macsales.com/shop/firewire/on-the-go
    John
    If your PB is the Firewire model the Firewire 400 (w/o USB) is even cheaper.

  • What is the largest SSD Drive for my MacBook pro 8,2?

    What is the largest solid state drive I can install in my MacBook pro 15" (Version 8,2 - i7 2.3 GHz) with 8GB RAM I currently am running OS X 10.6.8 But I want to upgrade to Mavericks 10.9 and perform a clean install with Mavericks and manually move my files off of my backup.
    The Samsung 1TB  MZ-7TE1TB0BW looks nice but I don't know if it works well with my older MacBook Pro, just wondering if anyone has had any experience with this.
    Thanks

    1TB is as large as you'll get. Crucial also makes a nice one, and I can speak for Crucial working well with a machine that's 2 years older than yours.
    http://www.amazon.com/Crucial-2-5-Inch-adapter-Internal-CT960M500SSD1/dp/B00BQ8R GL6/ref=sr_1_1?ie=UTF8&qid=1389993377&sr=8-1&keywords=crucial+1tb+ssd

  • Satellite L650 - what is the Data(D:) drive for?

    Hi.
    What is it for and why is it so big?
    Can I decrease its size and add it to the WINDOWS(C:) drive?
    I bought the laptop (L650) advertising a 500GB HDD but I can only use 232GB (on the WINDOWS (C:) drive).
    Many thanks
    Chris

    Hello Chris
    Im a little bit confused. As far as I know new Toshiba notebooks are by default delivered with two HDD partitions so I dont understand why you can use 232 GB only.
    Can you see second partition in Windows Explorer?
    Generally speaking you can change partitions and optimize it for your usage but before you change anything create recovery DVD. You know if something goes wrong you can use this disc for OS installation.

  • What is the best external drive for my MBP using Bootcamp

    Here is what I would like to do.
    I have the latest MBP (5/2008) and I am using bootcamp with vista. I use my mac side and my vista side of the partition equally.
    I am finding it annoying that I am running out of drive space on both side of my computer.
    I am looking for an external drive that I can use with both vista and OS X. Do they exist? I am guessing any drive can be formated to work with one or the other but can any drive work with both at the same time?
    Ideally the drive would be a wifi drive and I can save off all my music and pictures to the external drive and it would be able to stream the music back to my notebook on either side of bootcamp.
    I would also like to plug the drive in and use it as an external drive when editing with final cut.
    I would also like to use the drive wirelessly for backups with OS X time machine.
    Is this asking too much from an external drive?
    What type of drives work well with OS X/ FCP and video storage? Does it have to be firewire or can it be USB2.0?
    Thanks for any help. I am asking because the 1TB apple time capsule is too expensive and will not work with vista.

    Edit Update:
    When I saw wireless-ly all I am really looking for is an drive that can also be used as a networked drive. The drive itself does not need wifi (might be nice) I just want to be able to be able to keep the drive away from my laptop (most of the time) and plug it into my router so it will show up as a networked drive for both all my computers on my home network.
    Thanks for any suggestion
    Healimonster

  • What is the right pixel settings for .dv to .mov export

    Hi there,
    if I don't want to loose "quality" by sticking to the original size of the movie (16:9, with Panasonic GS280) and export the original .dv to .mov, what kind of resolution do I have to use?
    It seems that, after some googling, 1024x576 should be right. But on the other side I read that iMovie anyway scales down to 960x540. Is that right?
    Thanks for any advice!
    Stef

    16:9 DV PAL is recorded anamorphically to 720 x576, you are correct that 1024 x 576 would be your choice for a non anamorphic conversion with maximum quality, however you will loose some quality when you do this.
    IMO the jury is still out on this 960 x 540 thing, I'd keep watching the forum for the latest opinions on this.

Maybe you are looking for

  • Mini Displayport connected to Thunderbolt-harddrive

    Hi! I have a Mac Mini (mid 2011), server model. I am thinking about buying a Thunderbolt-hardrive (Lacie 2big), which have two Thunderbolt-ports. The Mac Mini have only one. I wonder if I can connect this harddrive to the computer, and then a Mini Di

  • Need help Syncing my 30 GB IPOD with my Gateway that crashed??

    I had to get my computer recovered back to factory settings. I downloaded I-Tunes and tried to sync but it told me it couldn't sync non-purchased I-Tunes song off my IPOD. How can I pull off these songs and get them on my new I-Tunes and be able to s

  • Aperture and MobileMe - Unable to make galleries

    Anyone else having this issue... If I try and make a gallery of say anything that is over 20 photos it takes Aperture FOREVER to upload and then always gives me some error after say 30 minutes saying it was unable. Only after I try uploading the same

  • Printing text in smartforms

    Hi everyone i am working on smartforms and i have to print a text which is of som 50lines in 2 columns

  • Middle click settings - ThinkPad Compact USB Keyboard with TrackPoint

    I want use middle button as third button, not only for scrolling. How to set up? On internal keyboard it is possible (Lenovo E420), but on the external (ThinkPad Compact USB Keyboard with TrackPoint) is not. I use Windows 7.