Skip to main content

Posts

Zavigne

Zavigne

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

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 

How to stop a frozen application in windows using command line interface

Lets say you have a frozen application affecting the performance of your computer and other applications you may be running.There is a way to stop it and any other associated applications that may also be frozen.       1.Start cmd        2.Type taskkill /f /fi "status eq not responding"       3.Press the 'enter' key  

How to copy files from your desktop to a USB using command line interface

Let's say you have a whole lot of mp3 files from your desktop and want to copy them to your USB without selecting them from a list of file formats or by any chance wanting to be accurate.You can only choose to select only music files from many files. Lets assume your usb is drive H: this is how you would do it,type copy .\desktop\*.mp3  h:\