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") }