File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/winrm-fs-1.3.3/lib/winrm-fs/scripts/

Viewing File: exists.ps1.erb

$p = $ExecutionContext.SessionState.Path
$path = $p.GetUnresolvedProviderPathFromPSPath("<%= path %>")
if (Test-Path $path) {
  $true
  exit 0
}
else {
  $false
  exit 1
}