Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSDeploy
0.2.0
Private/Test-TargetOnVM.ps1
Function
Test-Target
{
param
(
$Target
,
$Session
)
Invoke-Command
-Session
$Session
-ScriptBlock
{
Test-Path
-Path
$using:Target
-PathType
Container
}
}