Skip to main content

How to create a folder in cmd and move all files inside


  • How to create a folder in cmd and move all files inside
  • Now that you know how to start cmd.exe, lets assume you have a number of text files in your desktop and you like to move all of them to one folder. This is how you would do it 

      1.create the older first called text_files like  md .\desktop\text_files


2.Now move all the text files from your desktop to the folder you created, type move .\desktop\*.txt .\desktop\text_files\



Comments

Popular posts from this blog

Zavigne

How to shutdown a computer using command

Lets say you want to sleep while watching a movie in your laptop and you want it to shut itself down in 30 minutes,an hour or any time you want,this is how you would do it.      1.Start cmd and type shutdown /f /s /t 300        -shutdown calls windows shutdown        -/f is to force the shutdown and terminate all the running applications        -/s is to specify a shutdown, you may also sleep,hibernate or restart your pc        - /t is for time in milliseconds,300 milliseconds is 5 minutes.   2.Lets say you want to abort your scheduled shutdown, just type shutdown /a   and the system will cancel automatically and notify you like this.

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