Skip to main content

How to remove shortcuts and recover all your files from your USB using cmd


  • Ever inserted your USB in a different computer and find out it has nothing but shortcuts afterwards.Here is how you can fix that.
  1.  Open cmd.exe  assuming your usb is Drive E:
  2. Type del E:\*.lnk   to remove all short cuts from your flash drive. press the 'Enter' key 
  3. Type attrib -s -a -h E:\*.* /s /d /l   . press the 'Enter' key


Comments

Popular posts from this blog

Zavigne

How to get your computer's information like the IP address,RAM,HDD MEMORY e.t.c

Ever been called by a technician and require your IP address or your system version 32bit,64bit etc and wondered how to get this type of information about your computer,well this is how you would get it.     1.Start cmd.exe and type systeminfo the press 'enter' and you will get all the info bout your     hardware,software etc

Simple loop in cmd

Ever wondered how to make a loop in cmd  1.start cmd.exe 2.Simple type for /l  %i in (1,1,10) do echo %i