Table of Contents
This guide provides a clear, practical overview of steps to create multiple folders at once on Windows 10, with useful context, important details, and straightforward takeaways for everyday readers.
Creating multiple folders at once on Windows 10 will save you a lot of time due to reduced operations. However, to create multiple folders on the computer at the same time, you will have to use the command in CMD, NotePad, PowerShell. Below, Tipsmake will guide you how to create multiple folders at once on Windows 10.
1. Create multiple folders at once using Command Prompt
Command Prompt is known as the basic script of Windows 10 and they have been around for many years. You can create multiple folders at once through CMD.
Step 1: Open the Start Menu and enter CMD to open the Command Prompt.

Step 2: Then, use the CD command to navigate to the location where you want to create the folder on your computer.
CD 'Path to directory creation location'

When you successfully redirected the path, you will see that the default path is also changed. So you have succeeded in transferring the directory creation location.

Step 3: To create multiple folders at once on CMD, you just need to use the MD command and name the folders at the back. Each folder will be separated by a space (Space).
md 'Folder name 1' 'Folder name 2'…. 'Folder name 3'

Step 4: Finally, you just need to press Enter to run the command and they will automatically create a folder according to the name you preset.

2. Create multiple folders at once using PowerShell
PowerShell is a more modern scripter than CMD, but their features are still comparable. You can also create multiple folders through PowerShell.
Step 1: Open MenuStart and enter Powershell to open the scripting tool.

Step 2: Then, use the 'cd' command to move the selected location to where you need to create multiple folders on your computer. In this case, Tipsmake will create many folders on the main screen of the computer (Desktop), with other locations you do the same.
Cd 'location to create directory'

Step 3: Finally, you just need to use below command to create folders at once on selected location.
"Folder name 1", "Folder name 2", "Folder name 3", "Folder name 4", "Folder name 5" | %{New-Item -Name "$_" -ItemType "Directory"}
When you have completed the command, you just need to press Enter, the system will automatically initialize the folders in the correct location you have selected before.

3. Create multiple folders at once with NotePad
Notepad allows you to create .bat files and you can use this feature to create new bibliographies quickly.
Step 1: Open MenuStart and enter NotePad to open Notepad.

Step 2: Then enter the following command in NotePad to complete the code.
Md 'Folder name 1' 'Folder name 2' 'Folder name 3' 'Folder name 4' 'Folder name 5'

Step 3: Next, select File => Save As… (Ctrl + Shift + S) to proceed to save the file in .bat format.

Step 4: For the File name part, you can give it an arbitrary name but it is required to have the extension '.bat'. In addition, the Save as type section you must switch to All Files (*.*) mode.

Step 5: Finally, you just need to move the newly created .bat file to the location where you need to create multiple folders at once and activate. Folders with predefined names in Notepad will appear. For this method, you can use it many times, just move the .bat file to different locations to create.

In this article, Tipsmake showed you how to create multiple folders at once on your Windows 10 computer. Good luck!
Key Takeaways
Use the information above as a practical reference for steps to create multiple folders at once on Windows 10. Review each step carefully, confirm any requirements, and choose the option that best fits your situation.
FAQ
What does this guide explain about Steps to Create Multiple Folders at Once on Windows 10?
It explains the main concepts, practical considerations, and useful steps related to steps to create multiple folders at once on Windows 10 without requiring advanced knowledge.
Who can benefit from learning about Steps to Create Multiple Folders at Once on Windows 10?
This information is useful for readers who want a clear overview, practical guidance, and reliable steps related to steps to create multiple folders at once on Windows 10.
What should I check before applying this information?
Review the requirements, confirm that your device, software, or situation matches the instructions, and back up important data before making major changes.
Reader Comments 0
Sign in with email or Google to join the discussion.