我希望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
脚手架.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) 相关联。
我需要使用特定于模块的语法吗?
** 编辑 **
我需要一种方法来确定-verbose
标志是否已在 .PS1 文件上设置,以便我可以将其传递给 .PSM1 文件。
脚手架.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"