Question

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

Was it helpful?

Solution

disconnect-viserver -confirm:$false

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top