I can't get a Fuji Xerox DocuPrint CP105b printer to function with OS Windows 8. Can anyone help please?

I downloaded the latest drivers. The printer appears in the Device Manager. But the driver is not there when I look at the properties of the printer. Help!

Hi Lindy,

Welcome to the Microsoft community where you can find all the answers related to windows.

According to the description, it looks like you are facing a problem with the printer after installing Windows 8.

I suggest you to see the steps in the following Microsoft article.

Solve printer problems: http://windows.microsoft.com/en-US/windows/printer-problems-in-windows-help#fix-printer-problems=windows-8&v1h=win8tab1&v2h=win7tab1&v3h=winvistatab1&v4h=winxptab1

Printer DocuPrint CP105b readers: http://www.fujixeroxprinters.com.au/en/support/Downloads.aspx?product=9932&category=5726&os=67108864&dl=1

If you need Windows guru, do not hesitate to post your questions and we will be happy to help you.

Tags: Windows

Similar Questions

  • I updated my iPad today and now I can't get cellular internet. Can anyone help please?

    I updated my iPad today and now I can't get cellular internet. Can anyone help please?

    It is a bug in 9.3 and persists in the 9.3.1

    to get back to be

    1. turn off the power, remove the sim card, reverse and insert sim card when asked. Or

    2 disable cellular data, mode airplane and then turn off. Wait about 30 seconds and then turn it on turn off the airplane mode and then turn on the cellular data. He must find it.

    but this is only a work around.  If you turn off again, you will have the same problem and her you need to repeat the steps above.

    Good luck

  • I get an unknown error 4260 when trying to burn a cd using itunes, I have a windows xp pc and used to burn the cd fine until 2 weeks ago, I don't know what has changed... Can anyone help please?

    I get an unknown error 4260 when trying to burn a cd using itunes, I have a windows xp pc and used to burn the cd fine until 2 weeks ago, I don't know what has changed... Can anyone help please?

    Hello raulganau, welcome.

    I suggest to try the system restore to restore the system to a date before the problem started. Try this...
    1. click on START
    2. click on "all programs".
    3. click on "Accessories".
    4. click on "system tools."
    5. click on "system restore."
    6 follow the instructions on the screen to restore the system to a date before the problem started
    Although the system restore does not target the personal data, I recommend always backup your personal data, just in case something happens.
    For reference, I have included a link that provides more specific information about the restoration of the system and how to use it:
    Let us know if it works,
    Thank you!

    Ryan Thieman
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Can anyone help please? I think of web page has changed all of a sudden. Everything is listed on the left side of the screen and appears to be in a basic format.

    Can anyone help please? I think of web page has changed all of a sudden. Everything is listed on the left side of the screen and appears to be in a basic format. I run XP and use Firefox 9.0.1.
    Thank you...

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance/themes).

  • the backup Cloud preventing defragmentation can anyone help please?

    Using know-how cloud (wish I had never started it!) Now when I try to defrag computer it stops and tells me:-paused for volume shadow copy?

    I use XP - can anyone help please?

    http://knowhow.com/article.DHTML?articleReference=3117&country=IE

    There is a FAQ on this page Web site, have you tried that?

  • Hi, I reinstalled vista windows several times on my pc during the past three years, but now he he isaying my activation key is already in use. Can anyone help please

    Hi, I reinstalled vista windows several times on my pc during the past three years, but now he he isaying my activation key is already in use. Can anyone help please

    Use the phone activation, do not meet all the prompts until the opportunity to talk to a real person

  • I am installing a seagate 500 GB internal hard drive, when I go to disk management, the drive is there, but I can not format because you know not initialized. can anyone help please

    I am installing an internal hard drive 500 GB seagate on my computer, when I go to disk management, the drive is there, but I can not format because it is unknown / not initialized. can anyone help please

    Try one of the two utilities below to partition and format the drive.

    Partition Wizard Home Edition:
    http://www.partitionwizard.com/free-partition-manager.html
    Note: There is also a CD bootable or versions of the bootable Flash drive:
    CD: http://www.partitionwizard.com/partition-wizard-bootable-cd.html
    Flash player: http://www.partitionwizard.com/bootable-flash-drive.html
    Among the features and functions: create partition, Delete partition, format partition,.
    A partition resize, move partitions, restore Partition after an accidental deletion, convert partition, Explore, Hide partition partition,
    Change the drive letter, a partition active Set, Explorer (content display) of the partition.
    Note: To achieve any task using the "Operations pending" box at the bottom or top left.

    Alternative to Partition Wizard (a bit easier to use, but Partition Wizard and EASEUS have almost identical user interfaces)
    EASEUS Partition Master Home Edition (free):
    http://www.partition-tool.com/personal.htm
    Partition software ALL-IN-ONE and the most convenient hard disk partition manager Kit
    Includes Partition Manager, Disk & Partition copy Wizard and Partition MBR and GUID partition GPT disk recovery Wizard (table) on Windows 2000, XP, Vista, Windows 7 and Windows Server 2000/2003/2008 (32-bit and 64-bit).
    It allows users to resize/move Partition, drive system extend, copy Disk & Partition, Partition merge, Split Partition, redistribute free space, convert dynamic disk, Partition Recovery and much more.

    J W Stuart: http://www.pagestart.com

  • Media Player will not play new links in the toolbar in Firefox. Error code is C00D11B1. Can anyone help please?

    I downloaded a toolbar with several applications to open as videos on media player.  I have the latest plugin on firefox, but when I check my computer it says that the ffplugin.msi is missing.  Can anyone help please?

    Try this Fixit

    Solve the problems of Windows Media Player video and other media or library

    http://support.Microsoft.com/mats/windows_media_player_diagnostic

    -Or-

    Follow the instructions given in this thread on the creation of a new profile

    http://forums.mozillazine.org/viewtopic.php?f=9&p=12063593

  • I have the table of 3 columns A, B, C. I want to store the sum of columns A B in the C column without using the DML statements. Can anyone help please how to do. ?

    I have the table of 3 columns A, B, C. I want to store the sum of columns A B in the C column without using the DML statements. Can anyone help please how to do. ?

    11.1 and especially you have virtual column

    SQL> create table t
      2  (
      3     a number
      4   , b number
      5   , c generated always as (a+b) virtual
      6  );
    
    Table created.
    
    SQL> insert into t (a, b) values (1, 2);
    
    1 row created.
    
    SQL> select * from t;
    
             A          B          C
    ---------- ---------- ----------
             1          2          3
    

    Before that, a front insert - trigger

    SQL> create table t
      2  (
      3     a number
      4   , b number
      5   , c number
      6  );
    
    Table created.
    
    SQL> create or replace trigger t_default before insert on t for each row
      2  begin
      3    :new.c := :new.a+:new.b;
      4  end;
      5  /
    
    Trigger created.
    
    SQL> insert into t (a, b) values (1, 2);
    
    1 row created.
    
    SQL> select * from t;
    
             A          B          C
    ---------- ---------- ----------
             1          2          3
    
  • Hi, I have a subscription in photoshop and creative cloud which includes the luminous room. but he asks me a serial number now; can anyone help please?

    Hi, I have a subscription in photoshop and creative cloud which includes the luminous room. but he asks me a serial number now; can anyone help please?

    Help creating cloud / Cloud Creative applications request serial number

    https://helpx.Adobe.com/creative-cloud/KB/CCM-prompt-serial-number.html

  • Hi, all of my PDF files to open with word, can anyone help please

    Hello, all my pdf files display a word icon and open in word, can anyone help please

    Hi lorraineb80453253,

    Please open "Control Panel > Default Programs > associate a type of file or Protocol with a program. Then select .pdf and change the word Adobe Acrobat program.

    Then close the window and try to open the PDF files.

    Kind regards

    Ana Maria

  • Printing a document in indesign that contains an eps logo. Part of the logo is not printing, but shows a white circle instead of a ball with a gradient. I think that it is an overlay problem - can anyone help please

    Printing a document in indesign that contains an eps logo. Part of the logo is not printing, but shows a white circle instead of a ball with a gradient. I think that it is an overlay problem - can anyone help please

    Try to resave the EPS to the native .ai or .psd format (depending on whether it's raster or vector) and use it.

  • I bought adobe CS3 design standard, but it has no serial no, can anyone help please

    I bought adobe CS3 design standard CD just but it has no serial no, can anyone help please

    Quickly find your serial number

  • Error code: __Stop: 0x0000008E (0xC000001D, 0x82651B5A, 0xA03EBBD4, 0x00000000) can anyone help please

    My laptop Acer gives me a blue screen on start, or crashes on startup.
    I just got an error code:
    Can stop: 0x0000008E (0xC000001D, 0x82651B5A, 0xA03EBBD4, 0x00000000) anyone help please

    Hello

    Two main causes of this blue screen video drivers and BIOS - check with the system manufacturer
    Site for graphics (Video) card and BIOS, then on site of the manufacturer of the device for the last video. It may be
    other pilots to check there. Disable the installation of self as those who are older and if
    Updates Windows suggests a pilot just HIDE. Antivirus is another possibility.

    See methods of update driver generic in the next message.

    BCCode: 8th 0x0000008E is the same as 0x1000008E

    Cause

    Bug KERNEL_MODE_EXCEPTION_NOT_HANDLED control is a very common bug control. To interpret
    You must identify which exception has been generated.

    Solve the problem

    If you do not have to debug this problem, you must use certain basic troubleshooting techniques:

    • Make sure you have enough disk space.
    • If a driver is identified in the bug check message, disable the driver or check with the manufacturer for driver updates.
    • Try changing video cards.
    • Check with your hardware vendor for updates to the BIOS.
    • Disable the BIOS memory options such as implementing caching or shading.

    If you plan to debug this problem, you may find it difficult to get a stack trace. Parameter 2 (the address of the exception) should identify the driver or function that caused the problem.

    If you do not know the specific cause of the exception, consider the following:

    • Hardware incompatibility. Ensure that all new equipment installed is listed in the list of the products tested Microsoft Windows market.
    • Service driver or defective peripheral system. A chauffeur service or defective peripheral system could be responsible for this error. The hardware problems, such as BIOS incompatibilities, conflicts of memory and IRQ conflicts can also generate this error.

    If the verification of the message bug list a driver by name, disable or remove that driver. In addition, disable or remove drivers or services that have been recently added. If the error occurs during the startup sequence and the system partition is formatted with the NTFS file system, you may be able to use Safe Mode to rename or to delete the faulty driver. If the driver is used as part of the start-up procedure of the system Safe Mode, you must start the computer by using the Recovery Console to access the file.

    If the problem is associated with Win32k.sys, the source of the error may be a third-party remote control program. If this software is installed, you can remove the system startup service using the recovery and then Console by removing the offending system service file.

    Check the system log in Event Viewer for additional error messages that might help identify the device or driver responsible for control of bug 0x1E. You can disable the cache in memory of the BIOS to try to resolve the error. You must also run the diagnostics of material, especially the scanner memory, which provides the manufacturer of the system. For more information about these procedures, see the manual of your computer.

    The error that generates this message may occur after the first reboot during Windows Setup, or after installation is complete. A possible cause of the error is lack of disk space for installation and the system BIOS incompatibilities. For any problems during the installation of Windows that are associated with lack of disk space, reduce the number of files on the hard disk drive target. Search and delete temporary files that you do not have to have, files hidden Internet, application backup files and files saved .chk , which contain fragments of files on disk scans. You can also use an another hard disk drive with more free space for the installation.

    You can solve the problems of BIOS by upgrading the version of the system BIOS

    =============================================

    Look in the Event Viewer to see if something is reported on those.
    http://www.computerperformance.co.UK/Vista/vista_event_viewer.htm

    MyEventViewer - free - a simple alternative in the standard Windows Event Viewer.
    TIP - Options - Advanced filter allows you to see a period of time instead of the entire file.

    http://www.NirSoft.NET/utils/my_event_viewer.html

    -------------------------------------------------------------------------

    It comes to my convenience store generic bluescreen:

    Here are a few ways to possibly fix the blue screen issue. If you could give the blue screen
    info that would help. Such as ITC and 4 others entered at the bottom left. And all others
    error information such as codes of STOP and info like IRQL_NOT_LESS_OR_EQUAL or PAGE_FAULT_IN_NONPAGED_AREA and similar messages.

    As examples:

    BCCode: 116
    BCP1: 87BC9510
    BCP2: 8C013D80
    BCP3: 00000000
    BCP4: 00000002

    or in this format:

    Stop: 0 x 00000000 (oxoooooooo oxoooooooo oxoooooooo oxooooooooo)
    Tcpip.sys - address blocking 0 x 0 00000000 000000000 DateStamp 0 x 000000000

    It is an excellent tool for displaying the blue screen error information

    BlueScreenView scans all your minidump files created during 'blue screen of death '.
    hangs and displays information about all accidents of a table - free
    http://www.NirSoft.NET/utils/blue_screen_view.html

    BlueScreens many are caused by old or damaged, in particular the video drivers drivers however
    There are other causes.

    You can do without if needed fail or the Vista DVD or recovery command prompt mode
    Options if your system was installed by the manufacturer.

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    You can try a system restore to a point before the problem started when one exists.

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html

    -------------------------------------------------------------------------

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe)
    program generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    The log can give you the answer if there is a corrupted driver. (Says not all possible
    driver problems).

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    -------------------------------------------------------------------------

    Often drivers up-to-date will help, usually video, sound, network card (NIC), WiFi, part 3
    keyboard and mouse, as well as of other major device drivers.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    -------------------------------------------------------------------------

    How to fix BlueScreen (STOP) errors that cause Windows Vista to shut down or restart
    quit unexpectedly
    http://support.Microsoft.com/kb/958233

    Troubleshooting, STOP error blue screen Vista
    http://www.chicagotech.NET/Vista/vistabluescreen.htm

    Understanding and decoding BSOD (blue screen of death) Messages
    http://www.Taranfx.com/blog/?p=692

    Windows - troubleshooting blue screen errors
    http://KB.wisc.edu/page.php?id=7033

    -------------------------------------------------------------------------

    In some cases, it may be necessary.

    The Options or Vista recovery disk Startup Repair

    How to do a startup repair
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • Can Windows Update problem, anyone help please?

    Hi, I have a toshiba laptop, it was for a month now, no problem, a windows 7.

    Put in service today as I normally do, but instead of the normal start screen, I see just a blue image with a flower on it and what appearance aircraft vapour trails.

    In the middle of the screen is: ' if please do not turn off or unplug your machine. Installing up-to-date 138 149... "

    At the bottom of the screen is: the Windows symbol, like a small flag with 4 colors and «Windows7» professional

    To the left of the image is the rotating circle device that indicates something is in charge.

    Now it is in the correct state for six hours. I can not turn off the computer, I have no control of the mouse, no keyboard control, I can't restart, I can not close, it is completely locked in this State.

    I would add that at no time have I asked for updates or tried to install a.

    Can someone help please, I would be very grateful.

    Thank you very much

    KeV.

    It's Windows 7 Windows Update performs its task.  It's an unusually long period.  This happens sometimes.  Although it clearly states "do not turn off your computer", it is exactly what you have to do.  Press and hold the button until the computer is silent.  Then restart.  99% of the time, the system recovers itself.  You will see some things on the screen that you don't normally see.  If you are asked, you want a Normal startup.

Maybe you are looking for

  • How can I reinstall iMovie

    Hello I got the macbook pro 13 2, 7GHz 8 GB 128 GB. 128 GB is too small and I have a friend who tried to uninstall some applications to have more memory. The problem is that he uninstall iMovie (the software has been installed at the beginning), but

  • Reconstruction of the iTunes library

    Is it possible to rebuild the iTunes library that you can rebuild the iPhoto and photo libraries? I tried now down the command and option/alt keys while opening iTunes and that didn't work. I lost a lot of my album art and I was wondering if a recons

  • How to return to NO PRIVATE browsing in FF v 19.0.2?

    I chose the PRIVATE BROWSING to security checks, now I want to go back to NO PRIVATE browsing in FF v 19.0.2? And it is gray and Ctrl + Shift + P does not work either. This feature should be built in like the previous versions. How can I return to ST

  • A30 - Problem of Modem it works with XP SP2?

    Someone there AN A30 (P4 3 GHz) INTERNAL MODEM WORKS WITH XP - SP2? I recently updated the hard drive in my A30 and installed XP SP2 and the latest Windows and found most of the latest drivers to work, but the last thing I'm trying to get on with the

  • Factory Image tab A10

    Where can I download and how do I install the factory for Lenovo tab A10 image?