Ts l505 does not show internal installed DVD or the external ,..

They show up in device manager .. with  warning as error 19
they cannot be installed ... they disappear after installing  roxio cd burner
something about deleting registers happened
tried uninstalling and urn off , the when turning on show not installed because of same problem
windows cannot start this hardware device because its configuration information (in the registry) is incomplete or damaged. (Code 19)
please help , my wife will kill me   !!  she doesn't know about this yet.
Solved!
Go to Solution.

http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/bulletin.jsp?ct=SB&soid=445782&ref=EV
If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

Similar Messages

  • Have just installed PE12 with no install problems. Share preference does not show any email preferences, just the default Adobe.

    PE12 just installed, but Organizer share preference for emailing photos does not show any email preferences except the default Adobe. Have Visa with Windows Mail. Previous PE worked OK.  How to resolve?

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • HP printer does not show up as part of the neighborhood in printer utility

    Hi Everybody -- I am trying to connect to a shared HP printer connected on my XP machine. It works fine when trying to connect to it from other pc's, however, when ever i try to connect to it from my MAC, the pc name and printer does not show up as part of the neighborhood in the printer setup utility (which is weird).
    I do have the drivers installed for that particular printer and it works fine with USB connection (HP6110). I know this is not a firewall issue becuase I tried connecting to the printer while disabling the firewall.
    Appreciate any help on this matter.

    Look over the printer sharing articles on iFelix Tech Notes.
    In addition, check the Mac's System Preferences> Sharing> Firewall tab> Advanced button and uncheck 'block unwanted UDP traffic' and "enable stealth mode". On the WinXP computer, go to Control Panels> Administrative Tools> Services and set 'Computer Browser' to manual from automatic.

  • Ios 7 calendar does not show events 2 years in the future

    Why does ios 7 calendar does not show events 2 years in the future?
    I've entered the events more than twice and it all shows up in the OSX calendar but not on my iphone.

    Just tested it works even 3 years ahead.
    Tap Calendars (bottom, middle) is All iCloud selected (tick mark)?

  • Help! When i connect my "iomega" External hard drive to my mac it does not show in devices or on the desktop, how can i access my hard drive?

    Help! When i connect my "iomega" External hard drive to my mac it does not show in devices or on the desktop, how can i access my hard drive?

    what format your iomega HD is it NTFS , if NTFS try download   http://www.apple.com/downloads/macosx/system_disk_utilities/ntfs3g.html

  • My iPhone 5 does not show caller name even though the number is saved with a name in contacts

    My iPhone 5 does not show caller name even though the number is saved with a name in contacts

    Contact your carrier. Caller ID is a carrier feature.

  • My iPad does not show me iTunes Radio with the new iOS 7 update

    My iPad does not show me iTunes Radio with the new iOS 7 update

    Hi, Abhishek642. 
    Thank you for visiting Apple Support Communities.
    If you are a U.S. customer try forcing all applications to close and power cycle the device.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If the issue persists, try signing our of the iTunes & App Store on the device and signing back in.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    For more information on iTunes Radio and it's availability, see the article below.
    About iTunes Radio
    http://support.apple.com/kb/HT5848
    Cheers,
    Jason H.

  • I am trying to update a chart in Pages that I created in Numbers, but the refresh button does not show up after I save the Numbers file. Thoughts?

    I am trying to update a chart in Pages that I created in Numbers, but the refresh button does not show up after I save the Numbers file. Thoughts?

    It is hard to exactly understand what you have  done or not by you one sentence description. My thought is have you read in the Pages User Guide? Here is what it says about updating a chart in Pages:
    Updating a Chart Copied from a Numbers Document
    If you’ve created a chart in Numbers, you can copy it and paste it into your Pages document. After it’s been pasted into Pages, the chart remains linked to the data tables it references in Numbers. To change the chart data, open the original Numbers document and edit the data there, save the Numbers document, and then refresh the chart data in Pages.To update a chart after you’ve updated its linked Numbers table:
       Select the chart on the page and click the Refresh button that appears.
    Note: You must save the Numbers document before copying and pasting your chart into your Pages document and after editing the Numbers data tables that the chart references.
    I hope it has helped you.

  • Successfully downloaded os x lion, but does not show as installed

    Bought and successively downloaded os x lion on my Mac, but does not show as installed

    That's one of the confusing things about the App store.  The app you purchase there is the Installer.
    If you've successfully run the installer then your Mac is on Lion but the last step of the install proceedure deletes the Installer from your apps directory.  The App store then reflects that the Installer is not installed on the system..  which is true.
    You can redownload the installer from the app store if needed.  If the installer is still in the Apps directory then you probably haven't installed Lion yet, just downloaded it.
    Regards,
    Captfred

  • Time Machine does not show after installing Lion?!

    I upgraded to Lion and now my Time Machine does not work. When I connect the disk it starts and then shuts down. It does not show neither on desktop or on Time Machine. Any ideas. I hate the thought of reinstalling Snow Leopard but...
    Thank you in advance
    Matej

    No reason to reinstall Snow Leopard.
    What's shown on the Time Machine Preferences window for Latest Backup?  If it shows "Error" in red, see #C2 in Time Machine - Troubleshooting.
    If not, a clue may be lurking in your logs.  Use the widget in #A1 of Time Machine - Troubleshooting to display the backup messages from your logs.  Locate the backup in question, then copy and post all the messages here.

  • LOV does not show newly added data in the same session

    Hi guys,
    I work with JDeveloper 11g Release 2. We use Oracle ADF to develop our web app.
    In a page we have a LOV (say the page name is "a"). The related data for that LOV is inserted to the db in another page ( say the page name is "b").
    When new data is added in the page "b" and goes directly to the page "a" the LOV does not show newly added data. But if the user log out and log in again
    LOV shows newly added data correctly.
    Is there a way to show the newly added data in the same session without logging out? Please help.
    Regards !
    Sameera.

    Add the following method in your ViewRowImpl base class:
    public void refreshLOVAccessorQueries() {
        List lovs = getViewDef().getListBindingDefs();
         if (lovs != null) {
             for (Object obj : lovs) {
                getListBindingRSI((ListBindingDef)obj).getRowSet().executeQuery();
                 ListBindingDef lbd = (ListBindingDef)obj;
    Export that method to the Row Client interface, add him to the pageDef, and invoke in the executables section of the pageDef:
        <executables>
    <invokeAction Binds="refreshLOVAccessorQueries" id="callRefreshLOVs"
    RefreshCondition="#{!requestContext.postback and empty bindings.exceptionList}"/>
       </executables>

  • How come the song and album does not show up on top of the new iTunes?

    I just downloaded the new iTunes and when I go to play a song, the title and album does not show up on the top of the screen.  The only thing that is there is the Apple logo.  Does anyone know why this is? and how can I get it to show the song title and album.
    The song is playing right now, but it is not showing up where it used to.  (Where the Apple logo is)

    See also:
    *https://support.mozilla.com/kb/Removing+the+Search+Helper+Extension+and+Bing+Bar
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Resetting_preferences

  • Wlst command listWebServices() does not show all web services in the domain

    Hi, I am trying to use wlst command listWebServices() to display all web services of a domain. It seems that it only displays the web services of enterprice applications (ear apps), but it does not show the web services of web applications (war apps). If I pass ear appliication name and one of its web module to listWebServices, it will show the web services that belong to the web module of this application. However if I pass war application name and its web module name to listWebServices, it will return "Unable to find the SOA Composite or Service. Oracle UCM Native Web Services", although I can see from wls admin console or em that this web application does have a couple of web services.
    I also tried to call listWebServicePolicies, again it returned "Unable to find any Web Services with the specified Application".
    My purpose of doing above is to use wlst to detach/attach web service policies for some web services. Since I cannot find the web services, I off course cannot detach/attach policies.
    Does anyone have any clue how to find web services using wlst command that belong to a war application, and then detach/attach policies ? Any help will be greatly appreciated.
    Thanks,
    Jian Huang
    From Oracle fusion HCM

    As of UCM version 11.1.1.6, Oracle UCM Web Services are managed from Enterprise Manager in Fusion Middleware Control, not Weblogic Admin Console!
    A document at Oracle support explains this in more detail: https://support.oracle.com/epmos/faces/ui/km/DocumentDisplay.jspx?id=1456506.1 :
    Setting up GenericSoapService in WLS to use WS-Security:
    Go to FMW Enterprise Manager. http://wlshost:7001/em
    In the tree, navigate to Weblogic Domain -> <Domain Name> -> and click on UCM_server1. (If the managed server for WCC is named something other than UCM_server1, click on that name.)
    From the UCM_server1 drop down menu, select "Web Services".
    On the "Oracle Infrastructure Web Services" tab, click the GenericSoapPort link.
    Once there you can set the policies you want and restart the server!
    Regards,
    Göran
    Edited by: Göran Paues on 2012-aug-20 10:02

  • Purchased music does not show in itunes.  Only the artists

    I purchased a couple albums on my iPhone.  It shows the artist in the iTunes store and that there are 22 items, but it does not show the music for me to download it to my library. 

    Depending upon what country that you are in you might be able to redownload the albums via the Purchased link under Quick Links on the right-hand side of the iTunes store homepage on your PC's iTunes, or on the current version of iTunes you can access the Purchased section by clicking on your name towards the top right of the iTunes screen and then Purchased on the popup
    If they show there then click on the cloud icons on them to download them

  • HT5527 My iCloud account does not show any additional storage beyond the 5GB

    My iCloud account manager does not show any storage beyond the standard 5 Gbytes that are free.  I supposedly have been granted additional storage according to an email from Apple but where is it?

    iMovie on your Mac  has nothing to do with iCloud storage.  Download and use Find Any File  to search for your iMovie project.  FAF can search areas that Spotlight can't, like invisible folders, packages and system folders.  If there a file with your file name on it anywhere on the hard drive FAF will find it.
    Do you have Time Machine enabled backing up to an external HD?  This situation is exactly what TM is good at.  It makes hourly backups so you can go back to find and restore the missing file.  All HDs crash at some time or another and having a good backup strategy is the only protection against that.

Maybe you are looking for

  • Problem in starting my weblogic server to get my obiee working

    Hello All, Please help me 1. I have oracle 11g installed as sysdba 2. I have OBIEE 11g Installed 3.i could login to my database through sqlplus with userid sys as sysdba/password .my data base status is active Now problem is : 1. i am unable to start

  • Purchase Order - No details for medium PRN in master record

    Hi together, we implement SRM 7.0 with Netweaver Portal 7.0. I'd like to create a purchase order with a user who has the role /SAPSRM/OP_Purchaser and is assigned to purchase organisation and purchasing group in the organizational structure. If I cre

  • Adobe Acrobat 9 will not open documents?  Any suggesions?

    I have the Adobe Acrobat 9 Standard version.  Everytime I try to open a document I get an error message.  Any suggetions?

  • Lightroom 4, Book Module, Importing text

    I want to create a poetry and photo book in Lightroom 4 and send to Blurb.  How do I import text not as a caption but as a whole page?  Thanks.   Tim

  • License issue after System Restore

    Hello All, We are facing an issue while doing a system restore on Windows 2003 / MS SQL 2005 / SAP 4.7D EXT 110. We followed the System copy option using SAPInst to do our system restore. When SAPinst prompted for DB import we stopped the SAPINST Too