try, catch doesent seem to work

In PowerShell there are terminating and non-terminating errors. The former terminate script execution (if not caught) and can be caught by try..catch, the latter don’t terminate script execution (so there’s nothing to catch). The error you’re receiving is a non-terminating one, so you need to make it a terminating error by appending -ErrorAction Stop to the statement:

try {
  Restart-Computer -ComputerName MFG-KY-PC74 -Force -ErrorAction Stop
} catch {
  write-host "An Error Occurred"
}

Alternatively you can set $ErrorActionPreference = "Stop" if you want all errors to become terminating errors.

See this article on the Scripting Guy blog for more information.

Leave a Comment