ps/Modules/Alkami.PowerShell.Common/Public/Get-TempOrbDeployPath.ps1
2023-05-30 22:51:22 -07:00

12 lines
261 B
PowerShell

function Get-TempOrbDeployPath {
<#
.SYNOPSIS
Get the path to the default deploy location where the legacy Orb WCF/Client folders
#>
[CmdletBinding()]
Param()
return (Join-Path (Join-Path (Join-Path $env:SystemDrive "temp") "deploy") "Orb")
}