NB305-N440BL getting 0a-0224-0000 file transfer error message using USB Thumbdrive

Doing total out of the box restore.
First off, Toshiba, in their infinite wisdom sends a DVD Rom to you when you order a Recovery Media for a Netbook which has NO DVDROM.  I had to replace the HD after an accident and it is unreadable as a harddrive and had no backup.    As a result, the only thing I have left is to try and copy that to a Thumbdrive, because my backpack dvd writer is not recognized by the bios when booting.    I have a thumb drive big enough and have tried power iso with an extract to the thumbdrive, doing xcopy from the CD Rm as outlined here and other methods:
http://www.wikihow.com/Install-Windows-from-a-USB-Flash-Drive
I get the same error using the above two methods and could not get any further, I have tried to format the drive and delete the data, but I still get the message.....I am at my wits end.  Is there any software that will explode out the swm files on the DVD to what they are supposed to be so I can try to copy the raw files over and do a win to flash of version 7 with maybe some success????
Any help would be appreciated. 

I wouldn't try messing with transferring that data. You should call customer support and let them know about the mistake with the recovery media. It should have been sent on a USB stick.
- Peter

Similar Messages

  • File Transfer Error Between Ichat 2.1 and Ichat 3

    I am trying to send my brother some files. He has an Ibook G4 and so do I. He is running Ichat 3 on Tiger and I am running Ichat 2.1. Both of us are using a wireless connection through our own personal cable modems. He can send me files and I can accept them and get them without problems. Every time I try to send him a file, before it starts, we get an error 'File Transfer Error' file name not transferred.
    He says he has no problems receiving files from other buddies of all different types of operating systems.
    I don't recall having any problems sending or receiving from any of my other buddies either.
    Is this just an OS X.3 vs OS X.4 issue? Or is there something weird with my Ibook?
    Has anyone else had this problem? Thanks,
    -Chris
    IBook G4 1 Ghz   Mac OS X (10.3.9)   640 MB RAM

    Hi cjmagnuss,
    Can your brother send files to other people.
    It sounds like it might be his end.
    File Transfers happen on Port 5190 on the UDP protocol.
    Some modems and router have problems if they have to list Protocols when Port Forwading.
    Is this the case for him ?
    10:00 AM Tuesday; February 21, 2006
    iChat Resouce Web pages

  • File Transfer Error / Checked out access

    I am getting a file transfer error when trying to upload a revised file to the Remote Server. I think it may be related to the file being checked out by another team member who no longer has access to Dreamweaver. How can this be resolved? This is on a PC - I have CS6, the team member was using CS4.

    See if this helps
    Dreamweaver Help | Checking in and checking out files
    May not work, but did you try renaming or deleting the locked file?
    Can you log in as the other fomer team member?

  • Wrong CAP file version error message

    I'm trying to write a loader application that will send a CAP file into JavaCard, and then install it automatically.
    I have developed my JavaCard Applet by using Eclipse3.1.0 and JCOP30.
    After running my JavaCard Applet by Eclipse, I got its CAP file in folder [b\bin\FVSCardPkg\javacard\[/b]
    But when I run my loader application with this CAP file, the error message will display:
    EX: msg Wrong CAP file version, class class com.ibm.jc.JCException
    Wrong CAP file version
         at com.ibm.jc.CapFile.parseHeader(Unknown Source)
         at com.ibm.jc.CapFile.readCapFile(Unknown Source)
         at com.ibm.jc.CapFile.<init>(Unknown Source)
         at LoaderPkg.loader.load(loader.java:35)
         at LoaderPkg.loader.main(loader.java:20)
    This is my loader application source code:
    import java.io.*;
    import com.ibm.jc.*;
    import com.ibm.jc.terminal.*;
    *  Sample /**
    *  Sample loader. Demonstrates how to use the offcard API to download
    *  a cap-file on a JCOP41V22 Engineering sample card and listing of applets loaded will
    * follow.
    public class loader{
         private final static String termName = "pcsc:4"; // Real card
    //     private final static String termName = "Remote"; // Simulator
         protected static final byte[] JCOP_CARD_MANAGER_AID = { (byte) 0xa0, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00};
         protected static final byte defaultInstallParam[] = { -55, 0 };
         static String[] capFileName={"D:/MyCardPkg.cap"};
         public static void main(String[] args){
              try{
                   loader l = new loader();
                   l.load();
              }catch(Exception e){
                   System.err.println("EX: msg " + e.getMessage() + ", class " + e.getClass());
                   e.printStackTrace(System.err);
              System.exit(0);
              //Likewise for simulation, be patient the port takes time to close.
              //Use command line "netstate" to check the disapperance of the port before
              // activating JCShell command to read the simulated card.
         private loader(){}
         private void load() throws Exception{
              CapFile capFile = new CapFile(capFileName[0], null);
              System.out.println("Package name: " + capFile.pkg);
              byte[][] applets = capFile.aids;
              if ((applets == null) || (applets.length == 0)){
                   throw new RuntimeException("no applets in cap file");
              // Get connection to terminal, take note that jcop.exe is required to be activated
              // in simulation mode.
              System.out.println("Open terminal ...");
              //Make sure that the simulator jcop.exe is activated before unmarking this satement
              //Remember to delete the downloaded applet before running otherwise error is
              //expected if the simulator finds the existence of the applet with the
              //same pakage name ID and AID
              //Issue /close command at "cm" prompt if the card is in use,, ie it should
              //have "-" prompt. Be patient that the port takes time to close. Use command line
              //"netstate" to check the disapperance of the port before running.
              // pcsc:4=Card Terminal  Or  Remote=LocalHost Terminal
              JCTerminal term = JCTerminal.getInstance(termName, null);
              //For real JCOP41V22 card, please unmark this statement and delete the downloaded
              //applet before running. Error expected if the card finds the existence of the applet
              //with the same pakage name ID and AID
              //Issue /close command at "cm" prompt if the card is in use,, ie it should
              //have "-" prompt.
              term.open();
              // Add in this statement for real card which requires some response time
              term.waitForCard(5000);
              // Create a logging terminal spitting out the APDUs on standard out
              TraceJCTerminal _term = new TraceJCTerminal();
              _term.setLog(new PrintWriter(System.out));
              _term.init(term);
              term = _term;
              // Get JavaCard representative, passing NULL resets card and returns ATR
              System.out.println("Get card ...");
              JCard card = new JCard(term, null, 2000);
              // Get the off-card representative for the card manager and use it to
              // select the on-card CardManager
              System.out.println("Select card manager ...");
              CardManager cardManager = new CardManager(card, CardManager.daid);
              cardManager.select();
              // For downloading something, we have to be authenticated to card manager.
              // For this, the keys must be set. The keys to use should of course
              // be configurable as well.
              byte[] dfltKey = c2b("404142434445464748494a4b4c4d4e4f");
              cardManager.setKey(new OPKey(255, 1, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(255, 2, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(255, 3, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(1, 1, OPKey.DES_ECB, c2b("707172737475767778797a7b7c7d7e7f")));
              cardManager.setKey(new OPKey(1, 2, OPKey.DES_ECB, c2b("606162636465666768696a6b6c6d6e6f")));
              cardManager.setKey(new OPKey(1, 3, OPKey.DES_ECB, c2b("505152535455565758595a5b5c5d5e5f")));
              System.out.println("init Update ...");
              cardManager.initializeUpdate(255,0);
              System.out.println("Authenticate to card manager ...");
              cardManager.externalAuthenticate(OPApplet.APDU_CLR);
              // And load the cap-file, do not forget to call installForLoad
              System.out.println("Loading cap-file ...");
              byte[] cardManagerAid = cardManager.getAID();
              cardManager.installForLoad(capFile.pkgId,0, capFile.pkgId.length, cardManagerAid, 0, cardManagerAid.length, null, 0, null, 0, 0, null, 0);
              cardManager.load(capFile, null, CardManager.LOAD_ALL, null, cardManager.getMaxBlockLen());
              byte[] capaid = capFile.aids[0];
              System.out.println("Finished loading !");
              // Install applet, we try to install the first applet given in the
              // cap file, and try to instantiate it under the same AID as given for its
              // representation in the cap file. No installation data is passed.
              System.out.println("Installing applet ...");
              cardManager.installForInstallAndMakeSelectable(capFile.pkgId, 0, capFile.pkgId.length, capaid,0, capaid.length, capaid, 0, capaid.length, 0, defaultInstallParam, 0, defaultInstallParam.length, null, 0);
              System.out.println("Install succeeded!");
              // synchronize state with on-card card manager
              System.out.println("Update!");
              cardManager.update();
              // Print information regarding card manager, applets and packages on-card
              JCInfo info = JCInfo.INFO;
              System.out.println("\nCardManager AID : " + JCInfo.dataToString(cardManager.getAID()));
              System.out.println("CardManager state : " + info.toString("card.status", (byte) cardManager.getState()) + "\n");
              //Echountered error 6A 86 with this statement:Object[] app = cardManager.getApplets(CardManager.GET_APPLETS,
              //CardManager.CVM_FORMAT_HEX, true);
              //Solved the bug by playing the integers in arg0 and arg1.
              Object[] app = cardManager.getApplets(1, true);
              if (app == null) {
                   System.out.println("No applets installed on-card");
              } else {
                   System.out.println("Applets:");
                   for (int i = 0; i < app.length; i++) {
                        System.out.println(info.toString("applet.status", (byte) ((OPApplet) app).getState()) + " " + JCInfo.dataToString(((OPApplet) app[i]).getAID()));
              // List packages on card
              // Encountered error with this statement:Object[] lf = cardManager.getLoadFiles(CardManager.CVM_FORMAT_HEX, true);
              // Solved the bug by setting arg0 = 0,
              Object[] lf = cardManager.getLoadFiles(true);
              if (lf == null) {
                   System.out.println("No packages installed on-card");
              } else {
                   System.out.println("Packages:");
                   for (int i = 0; i < lf.length; i++) {
                        System.out.println(info.toString("loadfile.status", (byte)((LoadFile) lf[i]).getState()) + " " + JCInfo.dataToString(((LoadFile) lf[i]).getAID()));
              term.close();
         static String numbers = "0123456789abcdef";
         private byte[] c2b(String s) {
              if (s == null) return null;
              if (s.length() % 2 != 0) throw new RuntimeException("invalid length");
              byte[] result = new byte[s.length() / 2];
              for (int i = 0; i < s.length(); i += 2) {
                   int i1 = numbers.indexOf(s.charAt(i));
                   if (i1 == -1) throw new RuntimeException("invalid number");
                   int i2 = numbers.indexOf(s.charAt(i + 1));
                   if (i2 == -1) throw new RuntimeException("invalid number");
                   result[i / 2] = (byte) ((i1 << 4) | i2);
              return result;
    How to solve this problem?
    Thank you in advance.

    I'm not understanding if your cap file is in "b\bin\FVSCardPkg\javacard\", then why are you loading "D:/MyCardPkg.cap"?
    The issue isn't with your off card application, but the cap file version. Look at the cap file components in JCVM specification. I believe it's the Header component. The major, minor should match your card but not greater. In other words, your can't load a 2.2 on a 2.1 card, but a 2.1 can load on a 2.2

  • I am working in text edit and cannot open my file. Error message says it is in the wrong format, truncated or corrupted. what to do?

    I am working in text edit and cannot open my file. Error message says it is in the wrong format, truncated or corrupted. what to do?

    Try opening Disk Utility in your Applications-Utilities folder and repair permissions.

  • Just wanted to make sure I had the most up to date version of ITunes on my desktop first.  Tried to get on site, and got an error message saying; The folder ITunes is on a locked disk or you do not have write permissions for this folder.  Help!

    Wanted to sync up my new IPhone4, and thought that I should make sure I had the most up to date version of ITunes on my desktop first.  Tried to get on site, and got an error message saying; "The folder ITunes is on a locked disk or you do not have write permissions for this folder."   Cannot get on ITunes at all now.  Help!  Thx.

    In my case its a new computer the old one was stolen and the time machine disk did not work for a restore but did for copying the info to the new mac

  • ITunes wont download the restoring software for my itouch it gets finished and gives me an error message that says the network conection timed out but it works fine what do i do?

    i tunes wont download itouch restoring sotware it gets finished and gives me an error message saying the network conection timed out but its working fine what do i do?

    I have this same problem, i though it was my internet (super slow) it would take 3 HOURS!! to download the update and then after all the waiting, it would say "network connection timed out" Ive restarted it and checked my settings over and over but it still says "timed out" wat should I do?!?

  • I just used stellar phoenix mac data recovery and it seemed to work but now my files won't open.  Even though they are "jpeg, mov" files the error message is  could not be opened. The movie's file format isn't recognized. "  Any help or are they corrupted

    I just used stellar phoenix mac data recovery and it seemed to work but now my files won't open.  Even though they are "jpeg, mov" files, the error message is  "could not be opened". The movie's file format isn't recognized. "  Any help or are they corrupted?

    Sounds to me like the file is probably corrupt. If you had hard drive corruption or damage, that could easily result in recovered files not being fully intact. If you were trying to recover accidentally deleted files, it's possible they might have been partially overwritten before recovering. There are never any guarantees with file recovery.
    Without more information on the circumstances that led you to try recovery, it's hard to give advice on what to try from here. You could always try another file recovery tool, like Data Rescue 3. Just be sure you're taking appropriate precautions when doing recovery. See Recovering deleted files.

  • Getting 'insertItemAt is not a function' Error Message

    I am using abode pro 8 and am getting a 'insertItemAt is not a function' error message using the following code. (This code below was written as an example to show the process I want - I want to clear a combo box, then add data to it.)
    The error message only appear in a one of my pdf's I currently use, otherwise it works as written. Because I want the data to appear listed from top to bottom within the combo box from 1 to 5, I insert 5 first. 5 gets inserted, but when the code tries to insert 4, it trippers the error message. Any thoughts - is there another way to insert data into a combo box?
    var i = 0;
    var ii = 5;
    var v = new Array();
    v[1] = 1;
    v[2] = 2;
    v[3] = 3;
    v[4] = 4;
    v[5] = 5;
    //Combo Box
    this.getField("Fund Company-Long-Name").clearItems();
    var a = this.getField("Fund Company-Long-Name");
    for (var i= ii;  i > 0; i--)
                 if(v[i] != undefined)
                             app.alert(i);      
                             a.insertItemAt(v[i], (i, ""));
    v[0] = " ";
    a.insertItemAt(v[0], (0, ""));
    this.getField("Fund Company-Long-Name").value = " ";  
    //================Gives this error message=============
    Acrobat Database Connectivity Built-in Functions Version 8.0
    Acrobat EScript Built-in Functions Version 8.0
    Acrobat Annotations / Collaboration Built-in Functions Version 8.0
    Acrobat Annotations / Collaboration Built-in Wizard Functions Version 8.0
    Acrobat Multimedia Version 8.0
    Acrobat SOAP 8.0
    a.insertItemAt is not a function
    4:Field:Mouse Down

    Yes, I'm actually looking at those two methods now. New questions arise.
    If my combo Box is called "Fund Company-Long-Name", how could I add a varying number of items to it, using the "setItems" command?
    I can get it to work for a defined number of items, as below. But I don't know how to insert a variable to replace ["A", "B", "C"] below.
    /=======================================
    this.getField("Fund Company-Long-Name").clearItems();
    var a = this.getField("Fund Company-Long-Name");
    a.setItems(["A", "B", "C"]);

  • "Failed to load excel file" an Error Message while running TDS upgrade util

    Dear All,
    "Failed to load excel file" an Error Message while running TDS upgrade utility when clicking on CHECK DATA.
    Please help me out on this!!!!!!!!!!!!
    Thanks..........

    Not all data can be exported to Excel easily. Especially if the query result is huge or there are special characters in the query results. You may try the most updated version.
    Thanks,
    Gordon

  • HT201210 I have been trying to update to IOS 6 for 3 days now - my Iphone4S is in middle of restore and it gets so far then stops - no error  messages - the bar does not move further. it stops at different places - can anybody help please

    I have been trying to update to IOS 6 for 3 days now - my Iphone4S is in middle of restore and it gets so far then stops - no error  messages - the bar does not move further. it stops at different places -
    can anybody help please
    Kulbir

    Stewart
    This forum is for questions regarding the LabVIEW Datalogging and Supervisory Control Module. You will have more luck posting this question in the general LabVIEW forum.
    Good luck

  • I have a new hp 2050 printer and received a 10.0000 supply memory error message. what does this mean

    I have a new hp 2050 printer and received a 10.0000 supply memory error message. Can anyone tell me what this means and how to fix it?

    mickeymackey, this error looks similar to a related error code that I found for laserjets. Here is a summation of that error code:
    http://goo.gl/W7dP6
    This describes the problem as being a cartridge error, in which case I would follow the instructions in this document and see if that resolves the issue:
    http://goo.gl/h6hWz
    that does not resolve the issue, then I would recommend performing a hard reset of the printer. This would involve unplugging the printer for thirty seconds from both the back of the unit as well as from the outlet it is plugged into and then plugging the machine back in and powering it on.
    A few additional questions are: Is this printer plugged into a surge protector, wall outlet or battery backup? The ink you are using, are they original HP cartriges or have they been refilled before?
    Let me know!

  • On iCloud we are currently getting frequent "Contacts has stopped responding" error message. We are a small company that accesses our address book contacts off-site.

    On iCloud we are currently getting frequent "Contacts has stopped responding" error message. We are a small company that accesses our address book contacts off-site. Any solutions?

    I've deleted all future appointments from the Hotmail calendar.
    I've left the iPad overnight "thinking" about removing Calendar from iCloud and gave up this morning.
    My son has school information on the iPad.
    Please help???
    Regards,
    Anthony

  • Why do I get a start-up disk full error message?  I have 800 GB and have used approx. 249.

    why do I get a start-up disk full error message?  I have 800 GB and have used approx. 249.

    Here's the appropriate answer:
    Last login: Fri May 23 13:19:44 on console
    [la-mes883094mn:~] joannhackett% diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *251.0 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         250.0 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Macintosh HD           *249.7 GB   disk1
    [la-mes883094mn:~] joannhackett% diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group 098533C8-3936-4FB1-BCB8-2FE94E6E0500
        =========================================================
        Name:         Macintosh HD
        Status:       Online
        Size:         250006216704 B (250.0 GB)
        Free Space:   16777216 B (16.8 MB)
        |
        +-< Physical Volume 9518DA81-D7D6-4D76-8B4D-1F235D8AEA3A
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     250006216704 B (250.0 GB)
        |
        +-> Logical Volume Family C1A37CDE-6624-4094-A29A-2BB706380979
            Encryption Status:       Unlocked
            Encryption Type:         AES-XTS
            Conversion Status:       Complete
            Conversion Direction:    -none-
            Has Encrypted Extents:   Yes
            Fully Secure:            Yes
            Passphrase Required:     Yes
            |
            +-> Logical Volume 7175D310-4566-455D-9C50-1BD4CCF257CE
                Disk:                  disk1
                Status:                Online
                Size (Total):          249670668288 B (249.7 GB)
                Conversion Progress:   -none-
                Revertible:            Yes (unlock and decryption required)
                LV Name:               Macintosh HD
                Volume Name:           Macintosh HD
                Content Hint:          Apple_HFS
    [la-mes883094mn:~] joannhackett% mount
    /dev/disk1 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    map -fstab on /Network/Servers (autofs, automounted, nobrowse)
    localhost:/4OM-aHuM-mGML9PliXARLB on /Volumes/MobileBackups (mtmfs, nosuid, read-only, nobrowse)
    [la-mes883094mn:~] joannhackett% df -m /
    Filesystem 1M-blocks   Used Available Capacity  iused   ifree %iused  Mounted on
    /dev/disk1    238104 227599     10255    96% 58329357 2625394   96%   /
    [la-mes883094mn:~] joannhackett%
    As for the 251 disk, what is this?  I assume it's the wrong kind of memory?  Thanks, Jo Ann

  • Remote Execute and File Transfer Error

    Whenever we try to do a Remote Execute of File Transfer, we get an 1899
    error. Here's the strange thing, we can RE and FT to desktops that are
    still running the ZfD 4.x client. Seems to be only happening on the latest
    (ZfD 6.5sp2). Any ideas? Also, remote control and remote view still work
    w/o problem.

    Blewis,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

Maybe you are looking for

  • Is RDC integration with Lotus notes apps possible using CR XI and lotus 8

    Hi, We have reporting feature implemented in one of lotus notes application using crystal reports 6 (OCX)  and as Crystal report is going to be upgraded to CR XI version in my organisation, we need to implement the same using RDC component. Backgroun

  • Assign Business Partners to iBase Components

    Hi Experts, I have created Solution for my Satellite systems in Solution Manager , I followed below path to Create and Assign the Component Systems as iBase . 1) DSWP> I have Selected  a Solution and went to EDIT tab>Initial Data Transfer for IBase.

  • More tabs than 5 with a tab bar controller

    When you create a tabbar based app using the template from the sdk you can see all your tabs (14 in my case) along the bottom in IB. See image: However when you compile and run the app you get only 4 and a more button. I would like to display all 14

  • HTML code for embedding QT file

    Hey QuickTimeKirk, I liked yr last answer and liked yr new proposal even better. So can you tell me the HTML code for embedding a looping .mov file on a website?

  • Problem with multirecord block

    Hi every one I have multirecord block in form conten 2 textitem A & B and i have checkbox . i need when i check the checkbox set instance item A Enable and item B Disable and vice versa the problem is when i check the checkbox all instance of item en