我可以在 Write-Host 或 Write-Debug 中使用 -Format 运算符吗?

发布于 2024-11-03 02:03:56 字数 177 浏览 0 评论 0原文

我是否错过了某些内容,或者是否无法在 Write-Debug 语句中获取我的格式?

"Date: {0:d}" -f (Get-Date) #Works as expected

Write-Debug "Date: {0:d}" -f (Get-Date) #Does not work

Do i miss something or is it not possible to get my formatting in a Write-Debug statement?

"Date: {0:d}" -f (Get-Date) #Works as expected

Write-Debug "Date: {0:d}" -f (Get-Date) #Does not work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里兽 2024-11-10 02:03:56

尝试将 $DebugPreference 更改为“继续”并添加一些括号:

$DebugPreference = "Continue"

Write-Debug ("Date: {0:d}" -f (Get-Date))

$DebugPreference 的默认值是“SilentlyContinue”,因此 Write-Debug 不会显示任何内容。

如果您将消息括在括号中,Write-Host 就会起作用。

Try changing $DebugPreference to "continue" and add some parens:

$DebugPreference = "Continue"

Write-Debug ("Date: {0:d}" -f (Get-Date))

The default for $DebugPreference is "SilentlyContinue" so Write-Debug won't display anything.

Write-Host will just work if you enclose your message in the parens.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文