I’m a powershell newbie, but I often find myself starting and stopping a small group of services when I’m debugging some code. In Powershell I can easily stop the processes using a wildcard but it makes me confirm. There is a -confirm parameter, but I must not be using it correctly?
`Stop-Process -ProcessName alcore.* -Confirm`
Can I bypass the confirm and just stop the process?
Thanks for any help,
~ck in San Diego
Try
From
get-help stop-process: