Skip to main content

Posts

#BirthdayWeek 📆

Recent 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