Este código está disponível em Powershell_ISE e no arquivo script.ps1
function Get-ScriptFullName () {
if($hostinvocation -ne $null) {
$hostinvocation.MyCommand.path
} else {
$script:MyInvocation.MyCommand.path
}
}
Meu script chama muitos outros scripts e eu preciso saber cada nome completo (para informações de log).
mas o mesmo comando não funciona em Powershell_ISE
Este código está disponível em Powershell_ISE e no arquivo script.ps1
function Get-ScriptFullName () {
if($hostinvocation -ne $null) {
$hostinvocation.MyCommand.path
} else {
$script:MyInvocation.MyCommand.path
}
}
Tags powershell path