I formatted flash and waste of space. help please.

I formatted flash and waste of space. What can I do?

Hi DavitGevorgyan,

·         You plug the flash drive to another computer?

Method 1: Connect the flash drive to another computer and see if it shows of the same size.

Method 2: Format the disk in disk management.

a. click Start, type diskmgmt.msc , and then press enter.

b. find the drive. Right-click on it and select format.

Tags: Windows

Similar Questions

  • I tried to erase and reset my iphone 6 s. But why is it taking so long? For more than 24 hours. Is this normal? The phone displays just the apple logo and wont open. Help, please. Thank you in advance.

    I tried to erase and reset my iphone 6 s. But why is it taking so long? For more than 24 hours. Is this normal? The phone displays just the apple logo and wont open. Help, please. Thank you in advance.

    Hello

    Follow the instructions here:

    If you are unable to update or restore your iPhone, iPad or iPod touch - Apple supports

  • Firefox suddenly stopped from asking me if I want my user name and saved passwords. Help, please!

    Firefox suddenly stopped from asking me if I want my user name and saved passwords. Help, please!

    Make sure that you are not Firefox running in permanent private browsing mode.

    To view the history settings and cookies, choose:

    • Tools > Options > privacy, choose the setting Firefox will: use the custom settings for the story of
    • Uncheck the box: [] "always use the navigation mode private.
  • to refine my question. The Lasso tool does not work.  When I select the content aware lasso shrinks and nothing changes.  Help please.

    to refine my question. The Lasso tool does not work.  When I select the content aware lasso shrinks and nothing changes.  Help please.

    A simple reset will often be the case if a tool becomes awkward. Go to this link, then select the lasso tool:

    Difficulty of tool

  • Hi, I have cs6. I bought a picture on adobe stock to use in a design. I don't know how to remove it from my library and use effectively? Help please

    Hi, I have cs6. I bought a picture on adobe stock to use in a design. I don't know how to remove it from my library and use effectively? Help please

    Go to stock.adobe.com and log in with the user ID Adobe that you purchased the image.

    Click on the Images link at the top right of the page to go to your history of license

    Click on the thumbnail of the image of the image you want to use to access the page of image details

    In the center of the details page, you will see a big blue to choose link where you want to save the image to

  • I posted a question can not find the question and or response. Help, please

    I posted a question can not find the question and or response. Help, please

    AFAIK, you can't share a catalog like this.

    The only recommended method is to store your images and catalogue on an external drive, you can alternatively plug in both computers.

    With today the external USB drives, the speed is still correct, and many users are satisfied with this solution.

  • I have many PDF files on my PC which one cannot remove, it becomes very messy and very annoying. Help, please?

    I have many PDF files on my PC which one cannot remove, it becomes very messy and very annoying. Help, please?

    In Windows Explorer click the icon "show preview pane" on the right side of the toolbar. Whenever a PDF file is opened in the preview pane, Windows treats as "in use" and will not allow that it be modified or deleted.

  • Drag and drop with a Flash response... Help, please

    Hello

    I just started with flash and actionscript3 about 5 weeks ago. I am in my first year uni and I have an assignment to slide / move (for a kindergarten class). His "little red hen" and they place the correct image to the right holder.

    I got drag and drop work but I can't seem to find a way display a check mark when they place in the correct holder.

    Help, please...

    It's my script (it may seem messy... still new)

    import flash.events.MouseEvent;

    / * Mouse event that ensures the function of hen movieclip to start dragging
    When the mouse is pressed * /.

    hen1_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen2_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen3_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen4_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen5_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen6_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);


    Ability to function (event: MouseEvent): void
    {
    event.target.startDrag ();
    }

    / * Mouse event that ensures the function of hen movieclip to drop
    When the mouse button is released with Condition statement, if
    owner = hen, hen snaps into place * /.

    hen1_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop1);
    function dragStop1 (event: MouseEvent): void
    {
    hen1_mc.stopDrag ();
    If (hen1_mc.hitTestObject (holder1_mc) is true)

    {
    hen1_mc.x = holder1_mc.x;
    hen1_mc.y = holder1_mc.y;
    }
    }


    hen2_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop2);
    function dragStop2 (event: MouseEvent): void
    {
    hen2_mc.stopDrag ();
    If (hen2_mc.hitTestObject (holder2_mc) == true)
    {
    hen2_mc.x = holder2_mc.x;
    hen2_mc.y = holder2_mc.y;
    }
    }


    hen3_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop3);
    function dragStop3 (event: MouseEvent): void
    {
    hen3_mc.stopDrag ();
    If (hen3_mc.hitTestObject (holder3_mc) == true)
    {
    hen3_mc.x = holder3_mc.x;
    hen3_mc.y = holder3_mc.y;
    }
    }

    hen4_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop4);
    function dragStop4 (event: MouseEvent): void
    {
    hen4_mc.stopDrag ();
    If (hen4_mc, hitTestObject (holder4_mc) is true)
    {
    hen4_mc.x = holder4_mc.x;
    hen4_mc.y = holder4_mc.y;
    }
    }

    hen5_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop5);
    function dragStop5 (event: MouseEvent): void
    {
    hen5_mc.stopDrag ();
    If (hen5_mc.hitTestObject (holder5_mc) == true)
    {
    hen5_mc.x = holder5_mc.x;
    hen5_mc.y = holder5_mc.y;
    }
    }

    hen6_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop6);
    function dragStop6 (event: MouseEvent): void
    {
    hen6_mc.stopDrag ();
    If (hen6_mc.hitTestObject (holder6_mc) == true)
    {
    hen6_mc.x = holder6_mc.x;
    hen6_mc.y = holder6_mc.y;
    }
    }

    You alreadsy have conditional statements in place as far as I can tell, you just need to add the ActionScript to display the tick...

    function dragStop1 (event: MouseEvent): void

    {

    hen1_mc.stopDrag ();

    If (hen1_mc.hitTestObject (holder1_mc))

    {

    hen1_mc.x = holder1_mc.x;

    hen1_mc.y = holder1_mc.y;

    View the tick code goes here

    }

    }

  • HP Deskjet 460 flashing and will not print - help!

    Hello

    I have a problem with my printer. The power and light of the resume light flashing and even though I followed the instructions from HP below, I can't make them stop. It doesn't seem to be any paper jams. What can I do?

    Thank you very much

    Ali

    Question

    Power light and the flashes summary.

    Hello

    Observation says:

    Hello

    I have a problem with my printer. The power and light of the resume light flashing and even though I followed the instructions from HP below, I can't make them stop. It doesn't seem to be any paper jams. What can I do?

    Thank you very much

    Ali

    Question

    Power light and the flashes summary.

    Rose 17: Power LED flashes and the flashing resumes
  • Cannot open videos from youtube and other sites. Help, please

    I cant buffering or see any video content on the Web like you tube. tube you it just says: an error has occurred and refreshing didn't work. in other sites the large sign for the video showed not just upward. its just empty. Help, please. I am trying to install adobe flash video and still does not

    Hello

    I noticed that you use Firefox (released almost two years 17 July 2012) 14. Why are you on this bass a version, even the 28 version is more up-to-date than that. You should check update to update to the latest version of Firefox.

    Flash is even enabled?

  • New computer with Win 7 and I'm drowned in ads, pop ups and constant redirects. Help, please!

    I just got a new computer with Windows 7, and I had nothing else that problems with redirections constants, pop up windows, ads pasted on top of advertising.  It's really driving me crazy.  Any time I click on what (in Facebook, or my website, or Twitter or whatever it is!) I am redirected to a new tab with an advertisement trying to make me spend it, or download that.

    When I'm on Facebook, I brilliantly flashing ads covering my groups and pages.  When I opened my site, I have flashing ads to the bottom of the left and the right of my blog and all my pages.

    I tried everything I know to stop this, and nothing works.  I ran Malwarebytes, and they found pieces of adware 2029!  I quarantined and deleted and ran two additional scans that came clean, but ads and redirects are always there, drive me to madness.

    Then someone please help me, I can't use this computer as it is, it takes twice as much time to my work, and that rebounds, flashing ads are too distracting for me to even write in my blog.

    Help, please

    Check out this free removal guide: http://malwaretips.com/blogs/remove-adware-popup-ads/

  • Windows 8 and first 11?  Help, please

    Hello

    I'm on windows 8 (64-bit) and PE11.  Today, I lost all my work, even though I had saved regularly and I have to redo the rendering very often.  Tonight because I'm redoing my work day, I lose sync and keep clips integers disappear.  It seems to be becoming more and more unstable.  I don't really know if I'm doing something wrong or, possibly, Windows 8 and 11 elements first are not the best fit.  I noticed a few other post mentioning window 8 problems even if they seem to be different from mine.

    The head of it at my company wants to remove windows 8 and install windows 7 on my computer (especially because of a VPN issue), but I fear that I will lose all my work.

    Can anyone suggest a way, or a number to call and tell me how I can save my work, get rid of windows 8 and then re-import my work in a Windows 7?  I fear only 2 weeks of my work is going up in smoke.

    PS I posted earlier, I am also having more frequent crashes.

    Help, please

    Thank you

    1. I would advise to do a full backup of the system before your machine for installation of the OS. I use Macrium Reflect product. There is a paid version I have, but there is also a free version.
    2. Note the path to your project's resources and the .prel file.
    3. Make sure that all the assets of the project (pictures, videos, sounds) and the project .prel file are saved on another disc or flash drive. Disable PRE11 on your computer before handing over the installation of W7.
    4. After the installation of W7 copy these assets of the project and the .prel file in the same folder on the hard drive of machines (2) above.
    5. Install PRE11 and activate it.
    6. Open the project file.

    See you soon,.
    --
    Neale
    Insanity is hereditary, get you your children

  • use restart from scratch using the option "ALT F10" and lose everything. Help, please!

    Whenever I try to connect my laptop, a screen invites me to do a repair of launch set-up. It goes through the motions for ten minutes and the screen turns white. The only way I can get at all is to restart all from scratch using the option "ALT F10" and lose everything. Any advice I would really appreciate.

    Hello

    1. Since when are you facing this problem?
    2. You did any recent changes?
    3. What version of Windows is installed on the computer?

    I suggest that you go into recovery options and try to perform system restore and see if it helps:
    http://Windows.Microsoft.com/en-us/Windows7/what-are-the-system-recovery-options-in-Windows-7
    http://Windows.Microsoft.com/en-us/Windows-Vista/what-are-the-system-recovery-options-in-Windows-Vista

    Otherwise, I suggest you to give us more information, so that we can better help you.

    It will be useful.

  • Microsoft windows search indexer stopped working and was closed - need help please

    I started getting this message

    Microsoft windows search indexing has stopped working and was closed
    today
    I deleted the files as described in other threads
    I tried to restore the index - which has not worked
    the sfc/scannow gets to 78% and then I get an error log - I can't open the newspaper - I do not have permission
    What should I do?
    my computer came pre-loaded with vista, so I did not install CD

    Hello

    Download and install Windows Search 4.0 and see if it helps.

    http://www.Microsoft.com/en-US/Download/details.aspx?ID=14850

    Hope this information helps.

  • Problem of connector 4-pin Corsair 600 CX-600 PS and P7-1137. Help, please!

    The forum recommended that I get a block of power supply Corsair CX - 500 or CX-600 ay P7 - 1137c PC (to upgrade the video card).

    I got a Corsair CX-600, but I noticed he didn't have a 4 pin power to connect a connector with 4 pins on the motherboard (labeled ATX CPU).

    What should I do? Y at - it an adapter that I'm supposed to do?  Help, please!

    I assume you found that the connector is a 4 + 4 split

    1 x main connector (20 + 4 pins)
    1 x 4 +4-pin ATX 12V
    1 x EPS 12V
    2 x PCI-E
    6 x SATA
    4 x peripheral
    1 x floppy

Maybe you are looking for