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

12 lines
175 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Get-ParentExecutionNameExampleUsage {
<#
.SYNOPSIS
Demo getting the parent executing name
#>
[CmdletBinding()]
Param()
(Get-ParentExecutionName);
}