Private/Get-OSDfolderbase.ps1
1 2 3 4 5 6 7 8 9 |
function Get-CurrentModuleBase { [CmdletBinding()] [OutputType([System.String])] param ( ) return $MyInvocation.MyCommand.Module.ModuleBase } |