ps/Modules/Alkami.PowerShell.Common/Public/Get-OrbSharedPath.ps1

12 lines
187 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Get-OrbSharedPath {
<#
.SYNOPSIS
Get the path to the root of the Orb WCF/Client folders
#>
[CmdletBinding()]
Param()
return (Join-Path (Get-OrbPath) Shared);
}