gpt4 book ai didi

powershell - 即使 $VerbosePreference 为 'Continue',Copy-Item 也不显示详细消息

转载 作者:行者123 更新时间:2023-12-02 23:23:05 26 4
gpt4 key购买 nike

如果我运行 Copy-Item "C:\Temp\A.txt" "C:\Temp\B.txt" -Verbose ,我收到以下输出消息:

VERBOSE: Performing the operation "Copy File" on target "Item: C:\Temp\A.txt Destination: C:\Temp\B.txt".



但是当我运行时
$VerbosePreference = 'Continue'

Copy-Item "C:\Temp\A.txt" "C:\Temp\B.txt"

什么都没有显示。它是否正确?我错过了什么?

谢谢!

最佳答案

$VerbosePreference变量与 Write-Verbose 相关命令。它不会自动添加 -Verbose切换到其他命令。

为了获得我相信您所追求的功能,我通常这样做:

$VerbosePreference = 'Continue'

if($VerbosePreference -eq "Continue"){
Copy-Item "C:\Temp\A.txt" "C:\Temp\B.txt" -Verbose
}else{
Copy-Item "C:\Temp\A.txt" "C:\Temp\B.txt"
}

关于powershell - 即使 $VerbosePreference 为 'Continue',Copy-Item 也不显示详细消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44139052/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com