This is a TEST environment. User accounts are subject to deletion without warning. Use the Contact link below if you have questions.
Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
psdeploy
0.2.1
Private/New-TargetOnVM.ps1
Function
New-Target
{
param
(
$Target
,
$Session
)
$null
=
Invoke-Command
-Session
$session
-ScriptBlock
{
New-Item
-Path
$Using:Target
-ItemType
Directory
-Force
}
}