Skip to main content

Posts

Showing posts from April, 2015

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.  Open cmd.exe  assuming your usb is Drive E: Type del E:\*.lnk   to remove all short cuts from your flash drive. press the 'Enter' key  Type attrib -s -a -h E:\*.* /s /d /l   . press the 'Enter' key

How to disable a password in windows using cmd

Lets say you need to stop a PC from requiring a password. Start cmd, if you are not sure how, use other tutorials i have done. Type  wmic useraccount set passwordrequired=false Press the 'ENTER' key