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)
$FolderPathandName = "c:\Users\Administrator\Desktop\FolderName"
[IO.Directory]::CreateDirectory($FolderPathandName)
Comments
Post a Comment