Quantcast
Viewing all articles
Browse latest Browse all 26

Four Ways to Create a Directory with PowerShell

To create a directory with the help of PowerShell, open the PowerShell console with administrative privileges and use one of the following four ways.

Creating a Directory by using PowerShell

Method 1: Use the new-item command

new-item <path of directory suppose c:\dir1> -itemtype directory

Method 2: Use a file system object

$fso = new-object -ComObject scripting.filesystemobject

$fso.CreateFolder("path of directory suppose C:\test1")

Method 3: Use the md command

md <path of directory suppose c:\test5>

Method 4: Use the CreateDirectory method of system.io.directory object

[system.io.directory]::CreateDirectory("path of directory suppose c:\test5")

 

The post Four Ways to Create a Directory with PowerShell appeared first on FAQforge.


Viewing all articles
Browse latest Browse all 26

Trending Articles