本文发布于Cylon的收藏册,转载请著名原文链接~
要阻止弹出确认提示,需要设置-Confirm为false,
new-VM -Name $hostname -Template $template -VMHost 10.11.31.5 -OSCustomizationspec TestLinux -Confirm:$false
获得当前确认级别
$ConfirmPreference
查看确认级别($ConfirmPreference)支持的选项,类型为枚举
[ENUM]::GetNames($ConfirmPreference.GetType())
设置确认级别
$ConfirmPreference="None"
本文发布于Cylon的收藏册,转载请著名原文链接~
链接:https://www.oomkill.com/2020/04/powershell-confirm/
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」 许可协议进行许可。