Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
WozTools
1.38
Public/New-DirandEnter.ps1
function
New-DirandEnter
{
[
CmdletBinding
(
)
]
[
Alias
(
'mdc'
)
]
param
(
[
Parameter
(
Mandatory
)
]
[String]
$Path
)
New-Item
-Path
$Path
-ItemType
Directory
|
Set-Location
}