2020-11-05 04:31:34 +00:00
|
|
|
[CmdletBinding()]param([string]$Path)
|
|
|
|
|
|
|
|
try {
|
2020-12-02 04:31:42 +00:00
|
|
|
if( $Path[0] -eq '@' ) {
|
|
|
|
$Path = Join-Path $MyPSScriptRoot $Path.Substring(1)
|
|
|
|
}
|
2020-11-05 04:31:34 +00:00
|
|
|
get-item $Path -Force -ErrorAction Stop |
|
|
|
|
Select-Object -ExpandProperty FullName
|
|
|
|
} catch {
|
|
|
|
$_.targetObject
|
|
|
|
}
|