Format HARD drive in my cam error practice sony XR150E. Please let me know how to solve

Hi all

I use Sony handycam model XDR150E. I am not able to take any video, it always shows me HDD format error.

Please let me know how to solve

You can also use a data recovery software to help you.the disc you are trying to access either is not designed to be used with your OS, or it has been damaged and the data can no longer be read. Each diskette and hard disk must be formatted to prepare media for use with a particular file system.

to resolve the error format hard drive , use a third-party software or ask for the help of an engineer.

Tags: Sony Products

Similar Questions

  • Installing Windows 7 on a newly formatted hard drive, I get an error that a driver is missing.

    Upgrading to windows 7 and reformat drive grad

    Impossible to install windows 7 with reformatting hard drive he asks for some drivers for the disk hard it is msi wind with 3 virtual drives from the factory.   I don't know which driver there need or where to find

    I have now installed 7 gig, but only 1 left on my drive c. Impossible to extend this volume. I have 100 gig on my drive but cat use it for operating system
    I want to reformat and take any one disc a disc
    How do I do that?

    I solved my problem by deleting logical drive d and expanding the c drive

  • Cannot access a HID device get code 5 error please let me know how to access a HID device, I need an example of code to access a HID device in windows 7.Thanks.R.M. Kiran

    /*******************************************************
    Simplification of Windows HID

    Alan Ott
    Software signal 11

    22/08/2009

    Copyright 2009, all rights reserved.
     
    The contents of this file can be used by anyone
    for any other reason without conditions and can be
    used as a starting point for your own applications
    that appeal to HIDAPI.
    ********************************************************/

    #include
    #include
    #include
    #include
    #include "hidapi.h".

    The headers needed to sleep.
    #ifdef _WIN32
    #include
    #else
    #include
    #endif

    int main (int argc, char * argv)
    {
    int RES;
    unsigned char buf [256];
    #define MAX_STR 255
    WSTR wchar_t [MAX_STR];
    hid_device * handle;
    int i;

    WIN32 #ifdef
    UNREFERENCED_PARAMETER (ARGC);
    UNREFERENCED_PARAMETER (argv);
    #endif

    struct hid_device_info * devs, * cur_dev;
       
    devs = hid_enumerate (0x0, 0x0);
    printf ("id=%d\tsproduct id = %d\n",devs-> vendor_id provider, devs-> product_id ");
    cur_dev = devs;
    so that {(cur_dev)
    printf ("detecte\n device type: % 04hx %04hx\n path: %s\n Serial_number: %ls", cur_dev-> vendor_id, cur_dev-> cur_dev-> path, product_id, cur_dev-> Serial_number);
    printf ("\n");
    printf ("manufacturer: %ls\n", cur_dev-> manufacturer_string ");
    printf ("product: %ls\n", cur_dev-> product_string ");
    printf ("output: %hx\n", cur_dev-> release_number ");
    printf ("Interface: %d\n", cur_dev-> interface_number);
    printf ("\n");
    cur_dev = cur_dev-> next;
    }
    hid_free_enumeration (devs);

    To implement the command buffer.
    Memset (buf, 0x00, sizeof (BUF));
    buf [0] = 0x01;
    buf [1] = 0x81;

    Open the unit by using the VID, PID,
    and possibly the serial number.
    handle = hid_open (0x4d8, 0x3f, L "12345");
    handle = hid_open (0 x 0461, 0x4d81, NULL);
    If (! handle) {}
    printf ("cannot open device\n");
    Return 1;
    }

    Read the manufacturer string
    WSTR [0] = 0x0000;
    RES = hid_get_manufacturer_string (handle, wstr, MAX_STR);
    If (res<>
    printf ("could not read the manufacturer string\n");
    printf ("string of the manufacturer: %ls\n", wstr ");

    Read the product chain
    WSTR [0] = 0x0000;
    RES = hid_get_product_string (handle, wstr, MAX_STR);
    If (res<>
    printf ("cannot read string\n product");
    printf ("string of product: %ls\n", wstr ");

    Read the serial number string
    WSTR [0] = 0x0000;
    RES = hid_get_serial_number_string (handle, wstr, MAX_STR);
    If (res<>
    printf ("could not read the serial number string\n");
    printf ("string of serial number: (%d) %ls', wstr [0], wstr");
    printf ("\n");

    Read the indexed string 1
    WSTR [0] = 0x0000;
    RES = hid_get_indexed_string (handle, 1, wstr, MAX_STR);
    If (res<>
    printf ("could not read the string indexed 1\n");
    printf ("indexed 1 string: %ls\n", wstr);

    Define the function hid_read() as non-blocking.
    hid_set_nonblocking (handle, 1);
       
    Try reading from the device. It is and must be without
    given here, but enforcement should not block.
    RES = hid_read (handle, buf, 17);

    Send a report on the device
    buf [0] = 0x2;
    buf [1] = 0xa0;
    buf [2] = 0x0a;
    buf [3] = 0x00;
    buf [4] = 0x00;
    RES = hid_send_feature_report (handle, buf, 17);
    If (res< 0)="">
    printf ("cannot send a feature report. \n") ;
    }

    Memset (buf, 0, sizeof (BUF));

    Read a report of the device
    buf [0] = 0x2;
    RES = hid_get_feature_report (handle, buf, sizeof (buf));
    If (res< 0)="">
    printf ("failed to get a feature report. \n") ;
    printf ("%ls", hid_error (handle));
    }
    else {}
    Print the buffer returned.
    printf ("function Report\n");
    for (i = 0; i< res;="">
    printf ("% 02hhx", buf [i]);
    printf ("\n");
    }

    Memset (buf, 0, sizeof (BUF));

    LED toggle (cmd 0x80). The first byte is the report number (0 x 1).
    buf [0] = 0x1;
    buf [1] = 0x80;
    RES = hid_write (handle, buf, 17);
    If (res< 0)="">
    printf ("could not write () \n");
    printf ("error: %ls\n", hid_error (handle));
    }

    Status request (cmd 0x81). The first byte is the report number (0 x 1).
    buf [0] = 0x1;
    buf [1] = 0x81;
    hid_write (handle, buf, 17);
    If (res<>
    printf ("impossible to write() (2) \n" ");

    Read the requested State. hid_read() has been set to be
    non-blocking by the call to hid_set_nonblocking() above.
    This loop shows the non-blocking of hid_read() nature.
    Res = 0;
    While (res == 0) {}
    RES = hid_read (handle, buf, sizeof (buf));
    If (res == 0)
    printf("waiting...\n");
    If (res<>
    printf ("could not read () \n");
    WIN32 #ifdef
    Sleep (500);
    #else
    usleep(500*1000);
    #endif
    }

    printf ("read data: \n");
    Print the buffer returned.
    for (i = 0; i< res;="">
    printf ("% 02hhx", buf [i]);
    printf ("\n");

    hid_close (handle);

    / * Free of static objects of HIDAPI. */
    hid_exit();

    WIN32 #ifdef
    System ("pause");
    #endif

    return 0;
    }

    Hi KIRAN RM,.

    Given that you need example code to access a HID device in windows 7, the question you have posted is better suited for the MSDN Forums. Please post your query in the link next to the support of the MSDN forum for further assistance.

    Windows hardware development

  • Can I format HARD drive and reinstall Windows 7 on the Qosmio F60 without CD

    I think my hard drive is faulty on my F60 Quosmio so I want to reformat the hard drive to see if that will fix it. But I don't have the original packaging and the information with me at the moment so I don't know if it came with a windows 7 CD or not. Whatever it is, I don't have the CD.

    I found on the net that most manufacturer who deliver without CD include a "recovery partition" or "factory image partition" which you can access during startup. Anyone know if the F60 Quosmio comes with a CD or if she has this recovery partition or partition image factory? Or do you know if there is a way I can check if my computer is it?

    If you have more information about the formatting of the hard drive and reinstall windows 7 without the CD please let me know.

    Thank you.

    The laptop came with a Windows disc, because there is a Toshiba recovery disc Creator called tool which create the recovery disk.

    The recovery partition was available and it allows you to recover the laptop without the use of the recovery disk, but it does not work if the HARD drive has failed.

    Here's a nice HowTo on HARD drive recovery
    http://APS2.toshiba-tro.de/KB0/HTD1303440001R01.htm

    So, if you n t have a recovery disc and can not recovery Notepad using HARD drive recovery, then you have two options:
    -You will order a new recovery disk
    -You must install Windows operating system using a disc of Microsoft

  • How can I keep genuine win 7 in my laptop lenovo after formatting hard drive?

    How can I keep genuine win 7 in my laptop lenovo after formatting hard drive?

    Have you tried to restart by phone?

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

    Please run the Microsoft Genuine Diagnostics Tool then copy and paste the results into an answer here for further analysis:
    http://go.Microsoft.com/fwlink/?LinkId=52012

  • I accidentally loaded a .iso file on my PC and can not get rid of it. When I try to delete the file it says that the file is opened by the system. Also the file created 3 virtual drives like E:, F: and G: __Please let me know how I can remove this .iso

    I accidentally loaded a .iso file on my PC and can not get rid of it.  When I try to delete the file it says that the file is opened by the system.  Also the file created 3 virtual drives like E:, F: and G:
    Please let me know how I can remove this .iso file.

    Try Safe Mode. Repeatedly press the F8 key as the computer starts getting the menu diagnosis. Use the arrow key to select Mode without failure. MS - MVP - Elephant Boy computers - don't panic!

  • error when installing vista on a formatted hard drive

    I try to install Vista Home premium on a formatted hard drive. After booting from the installation DVD, I get the following message.

    Windows could not start. A recent hardware or software change might be the cause. To solve the problem:
    1. Insert your Windows installation disc and restart your computer.
    2. choose your language settings, and then click "next".
    3. click on "Repair your computer."
    If you do not have the disk, contact your system administrator or computer manufacturer for assistance.
    File: \windows\system32\boot\winload.exe
    Status: 0x0c0000221
    Info: This file is maybe damaged. The header checksum does not match the sum of computer control.
    Any ideas?

    I try to install Vista Home premium on a formatted hard drive. After booting from the installation DVD, I get the following message.

    Windows could not start. A recent hardware or software change might be the cause. To solve the problem:
    1. Insert your Windows installation disc and restart your computer.
    2. choose your language settings, and then click "next".
    3. click on "Repair your computer."
    If you do not have the disk, contact your system administrator or computer manufacturer for assistance.
    File: \windows\system32\boot\winload.exe
    Status: 0x0c0000221
    Info: This file is maybe damaged. The header checksum does not match the sum of computer control.
    Any ideas?

    Use utility diagnostics by the hard drive manufacturer (usually available from the web page of the manufacturer of the hard drive) to perform a complete diagnosis and zeros (low-level format) on disk.

  • FCPX think that an internal hard drive is a camera. What should do?

    FCPX think that an internal hard drive is a camera. What should do?

    YYou have probably something at the root of the drive that makes the application think that. Maybe a folder called DCIM or ITS oe a package called AVCHD. A number of things it can do.

  • Tecra 8200 to format HARD drive - how to install windows?

    Hello

    I bought a Tecra 8200 used with a formatted hard drive, when I put the original cd of Windows 2000 in the cd player, nothing happens, how do I get Windows installed?

    When I turn on the power, he said something about the dos mode and then it displays the date and time and after that nothing happens.

    I hope someone can help me!

    Thank you!

    Hello

    It seems that the machine can boot from the cd rom t.
    Please check in the BIOS if the CD rom is recognized.
    Also if you have installed the original W2k OS of this device it of necessary to install driver in the following order:

    Driver Chipset
    Video driver
    Audio driver
    Common modules
    Energy-saving
    Toshiba Utilities
    Mobile extensions
    Internal Modem driver
    Infrared driver
    The mouse driver
    LAN driver
    Wireless LAN driver
    Toshiba Client Manager
    Toshiba network device switch
    Microsoft updates / QFE
    Extended IDE controller driver

    Good bye

  • The discs to a hard drive with an IO error can be removed and placed in a good hard drive to try to recover the information about the bad drive?

    The discs to a hard drive with an IO error can be removed and placed in a good hard drive to try to recover the information about the bad drive?  Both units are of the same type and speed.  both are records hard internal seagate w double disc in the drives

    On Thu, 20 Sep 2012 14:41:30 + 0000, Stephen_403 wrote:

    The discs to a hard drive with an IO error can be removed and placed in a good hard drive to try to recover the information about the bad drive?  Both units are of the same type and speed.  both are records hard internal seagate w double disc in the drives

    No, at least not by us.

    Open a hard drive for some reason any at all can be done in special
    laboratory as parameters. Something else will destroy the disk.

    There are companies trying to recover data from broken disks,
    and they are sometimes successful. And who knows, maybe they
    sometimes use methods such as what you describe.

    But if you plan to use such a company, know what they
    are all very expensive. It does not for most people.

    For the future, if you have files you want to be sure are not
    lost, make sure to have in place a backup procedure on a regular basis the
    external media player.

    Ken Blake, Microsoft MVP

  • Installation of SP3 on a newly formatted HARD drive

    Hello

    I have a few questions about the installation of Windows XP Service Packs on newly formatted hard drives.

    Recently I have formatted a new HARD drive and installed Windows XP Home Edition. In order to be upgraded to Service Pack 1 to 3, it is recommended to connect to Windows Update and download and install it from there. I did this and was prompted to install Service Pack 2. During the last steps of the installation (I think that durng the procedure of 'start process'), I lost Internet connectivity and was impossible to reconnect (I use a USB dongle. I think that a virus infection is interfering with the connection). That's why I had to restart my computer for the installation could be completed, but it seemed to be successful that I was able to reboot without any problem. I assume that the installation had actually finished and it was just reset stage that was interrupted.

    Question: even if the installation of Service Pack 2 has not finished and my machine seems to be fine, reinstall Service Pack 2 in order to ensure that it is completely installed?

    Question: Why should I install SP2? If Service Pack 3 contains all fixes and features of all previous Service Packs and it is acceptable to upgrade to Service Pack 1 to 3 directly, why didn't Windows Update invite me to install Service Pack 3 instead?

    Question: I have found a manual download of Service Pack 3 (http://www.microsoft.com/downloads/en/details.aspx?FamilyID=5b33b5a8-5e76-401f-be08-1e1555d4f3d4&displaylang=en), but Microsoft strongly recommends that use you it only on machines in a network, and not on a single computer. Y at - it hurt to do?

    A question here, is that if Microsoft recommends that download the latest Service Packs of Windows Update online, so it seems not possible to fully guarantee your Windows installation before connecting the interest for the first time. All the while I'm software download and installation of Service Pack 2, malware, worms and viruses have been infecting my computer (Avast! blocked a malware exploit). So even if I managed to upgrade to Service Pack 3, my machine is already infected.

    Is there a recommended way to upgrade to Service Pack 3 before you connect to the Internet for the first time?

    Thank you

    Tristan

    See...

    HOW TO get a computer that is running Windows XP SP1 (a) or SP2 fully patched (after a clean install)
    http://groups.Google.com/group/Microsoft.public.WindowsXP.General/MSG/a066ae41add7dd2b

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Iso file of windows xp can directly be installed USB on a formatted hard drive?

    Iso file of windows xp can directly be installed USB on a formatted hard drive?

    Not directly.

    There is a SMALL chance that if your hardware supports it (unfortunately never say you anything on your PC or BIOS), you can boot from a USB stick or an optical drive and install Windows XP like this.
    But it is unlikely.
    In addition, tell us what you mean by 'windows xp iso file. This is very vague, and we do not know what you are talking about.
    Finally, if you want to ask questions here, really read the answers and recognize them in some way. Here is a link to your other thread:
  • The update to version 2 of Vitsa fail. Formatted hard drive to purchase the version. need to find the final vista product key

    The update to version 2 of Vitsa fail. Formatted hard drive to purchase the version. need to find the final vista product key

    It should be on a sticker on the box, or on the packaging.

    The product key consisted of 25 digits, divided into 5 groups of 5 digits.

    See you soon...

    Mick Murphy - Microsoft partner

  • An installion 64-bit read than a 32-bit format hard drive does

    An installion 64-bit read than a 32-bit format hard drive does  I want to install win 7 64 bit on a new hard drive fast.  So I can transfer data files from the drive that was in my current system that is formatted for a 32-bit operation?

    If the disk has been formatted for a Windows system, it can be read by Windows 7. If the system was 32 or 64-bit is not serious.

  • I would like to buy and install a stand-alone version of Lightroom on my iMac. I do not want to join the CC program. The CC is not an option for me. I'm iMac late 2009 user, osx el capitan, installed on a formatted hard drive 1 t, 16 GB of ram with1066 MH

    I would like to buy and install a stand-alone version of Lightroom on my iMac. I do not want to join the CC program. The CC is not an option for me. I'm iMac late 2009 user, osx el capitan, installed on a formatted hard drive 1 t, 16 GB of ram with1066 MHz PC3-8500 DDR3 SDRAM. Everyone uses LR6 on iMac late 2009? anyone has any experience with el capitan and LR6 osx?

    Hi Piotrsta,

    With the last update of Lightroom, most of the problems have been corrected.

    Also, you can read the following article: Lightroom and El Capitan | Mac OS 10.11

    Kind regards

    Tanuj

Maybe you are looking for

  • Firefox crashes when I visit this Site.

    In fact, my firefox put updated yesterday at 39.0 and I was about to watch video clips, trailers of http://flickx.ws at first, as I tried to watch from http://Imdb.com but there were no play then tried to visit a site lite requiring less internet spe

  • blocked cookies

    Hi dear support, I couldn't solve my problem, I tried a lot of tipps and settings to allow cookies from google...Its a very difficult issue...I use No Script and Adblock, but I hope that they are not the issue...I also discovered, regardless of the c

  • iTunes with Win10, 64-bit

    I upgraded to Win7 64 bit for Win10, 64-bit, Now iTunes 12.3.3 64-bit does not start. All iTunes - programs have been be uninstalled according to instruction of Apple and the latest aof reinstalled iTunes. But without success. Today, there is a new v

  • After powering OFF reboot loop...

    I feed my backflip off last night and since then when I try to turn it on it constantly restarts... What can I do?

  • Problem with the generation of multi-sinus wavefrom of random phase using PXI-5412

    Hello I am trying to generate random phase multi-sine waveform using the PXI-5412 14 bits 100 M/s AWG on LabVIEW8.0. The version of LabVIEW8.0 for the PXI-5412 comes with a sample VI on multi-tone waveform generation. When I tried with a different co