在PowerShell模块中忽略了Write-Verbose

时间:2013-05-06 20:25:23

标签: powershell powershell-v2.0

我希望在脚本和函数中使用Write-Verbose命令行开关。它在脚本(.ps1)文件中按预期工作,但在模块(.psm1)文件中不起作用 - 模块中忽略了命令行开关。

运行以下脚本:

PS> .\scaffold.ps1 -verbose

产地:

VERBOSE: starting foo
path: c:\bar.txt
[missing entry here - 'verbose path: c:\bar.txt']
VERBOSE: ending foo

scaffold.ps1:

[cmdletbinding()]
param()

import-module Common -force

write-verbose "starting foo"

foo "c:\bar.txt"

write-verbose "ending foo"

Common.psm1:

function foo {

  [cmdletbinding()]
  Param(
    [string]$path
  )

  write-host "path: $path"
  write-verbose "verbose path: $path"

}

此时我还没有将清单(.psd1)与模块(.psm1)相关联。

我需要使用特定于模块的语法吗?

**编辑**

我需要的是一种确定.PS1文件上是否已设置-verbose标志的方法,以便将其传递给.PSM1文件。

scaffold.ps1:

[cmdletbinding()]
param()

import-module Common -force

write-verbose "starting foo"

foo "c:\bar.txt" $verbose_flag # pass verbose setting to module based on what was set on the script itself

write-verbose "ending foo"

3 个答案:

答案 0 :(得分:8)

要从模块中的cmdlet获取Write-Verbose输出,您需要使用-verbose通用参数。见http://technet.microsoft.com/en-us/magazine/ff677563.aspx

使用您的代码:

>import-module R:\Common.psm1
>foo "c:\users"
path: c:\users
>foo "c:\users" -verbose
path: c:\users
VERBOSE: verbose path: c:\users

答案 1 :(得分:5)

在这里找到答案:How to properly use the -verbose and -debug parameters in custom cmdlet

scaffold.ps1:

[cmdletbinding()]
param()

import-module Common -force

write-verbose "starting foo"

foo "c:\bar.txt" -Verbose:($PSBoundParameters['Verbose'] -eq $true)

write-verbose "ending foo"

答案 2 :(得分:4)

这里的问题是调用者范围中的变量不会被脚本模块中的代码拾取。当您调用“。\ scaffold.ps1 -verbose”时,$ verbosePreference在scaffold.ps1的脚本范围中设置为“Continue”。如果从该脚本调用已编译的Cmdlet,它将遵循$ VerbosePreference值,但是当您从脚本模块调用高级函数时,它们不会。

我最近编写了一个函数,允许您从调用者导入首选项变量,使用$ PSCmdlet和$ ExecutionContext.SessionState的组合来获取适当的变量范围。在脚本模块的导出函数的开头,对此命令的调用如下所示:

Get-CallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState

可以从http://gallery.technet.microsoft.com/scriptcenter/Inherit-Preference-82343b9d

下载Get-CallerPreference功能