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

12 lines
175 B
PowerShell

function Get-ParentExecutionNameExampleUsage {
<#
.SYNOPSIS
Demo getting the parent executing name
#>
[CmdletBinding()]
Param()
(Get-ParentExecutionName);
}