PoshCode Archive  Artifact [7cc0144fd1]

Artifact 7cc0144fd1208564d6d8610b290656fbe5f022874ac018397e5fafa03d21ac30:

  • File custom-directory-in-UI.ps1 — part of check-in [a71dc5eea4] at 2018-06-10 13:37:39 on branch trunk — custom directory creation using UI in power shell (user: himanshu size: 430)

# encoding: ascii
# api: powershell
# title: custom directory in UI
# description: custom directory creation using UI in power shell
# version: 0.1
# author: himanshu
# license: CC0
# x-poshcode-id: 4163
# x-archived: 2015-10-07T01:28:24
# x-published: 2015-05-17T10:21:00
#
#

$name = Read-Host 'SSIS_DUMMY?'
$E = $name

$Location = "D:\MVCApplication\"
New-Item -Path $Location -name  $E -ItemType "directory"