1

When I type in "mkdir -p" windows powershell spits out that the parameter p cannot be used because it is ambiguous, any idea what I am doing wrong?

Thanks

1 Answers1

1

try to runs as an alias, -p is ambiguous because it could be either of the -Path or -PipelineVariable arguments for New-Item.try below

mkdir -path Home\first\second

it will may be work..

Dharma
  • 1,102