How can I disable the prompt when using the following cmdlet to disconnect from a server in PowerCLI? The help file shows a -Confirm option, which I don't use, so I'm inferring from this that without it, there should be NO prompt, but I still get prompted?

disconnect-viserver -server MyServer

Thanks

有帮助吗?

解决方案

disconnect-viserver -confirm:$false

As you notice, omitting the Confirm parameter is equivalent to -Confirm:$true

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top