我注意到如果应用配置Start-DscConfiguration
失败,它会写入错误流但不会抛出异常?也就是说,如果我执行以下操作:
try{
Start-DscConfiguration -Path ".\MyConfig" -Wait -Verbose
}catch{
#...
}
...它永远不会在 catch 处理程序中结束。我怀疑这可能与以下事实"-Wait"
有关
Start-DscConfiguration
应用。
确定是否Start-DscConfiguration
已成功完成的正确方法是什么?