PowerShell Create Folder or Directory

Here is a powershell script that create a new folder or directory.

$FolderPathandName = "c:\Users\Administrator\Desktop\FolderName"

[IO.Directory]::CreateDirectory($FolderPathandName)

Comments