Error handling

Error handling

There are many ways to handle errors in PowerShell, and depending on your situation, one approach may be better than others.

As of PowerShell V2, you can also use ‘Try/Catch’ instead of `trap`. ‘Try/Catch’ is aimed more at developers than administrators, it doesn’t introduce scope as ‘trap’ does, it supports finally and rethrowing of exceptions. As such, it is typically preferable and the examples in this document will focus on `Try/Catch`.

 

A classic example of a try catch statement 

  1. try {
  2. #logic
  3. throw "Error message"
  4. }
  5. catch {
  6. exit #optional
  7. }
  8.  


Example 1

Running the following without installing the necessary cmdlets for SQL Clone.

  1. try {
  2. Connect-Sqlclone http://localhost:14145
  3. }
  4. catch {
  5. exit
  6. }
  7.  

Example 2

  1. function log ([string]$msg){ #logging functionality
  2. #logging code, such as email, log to database etc. For this example, just output it to the console
  3. Write-Output($msg)
  4. }
  5.  
  6. #Create a clone from an existing image
  7. Connect-SqlClone 'http://localhost:14145'
  8. $Image = Get-SqlCloneImage -Name {Image_Name}
  9. $SqlServerInstance = Get-SqlCloneSqlServerInstance -MachineName {Machine_Name} -InstanceName {Instance_Name}
  10. New-SqlClone -Name {New_Clone} -Location $SqlServerInstance -Image $Image | Wait-SqlCloneOperation
  11.  
  12. #Get the newly created clone
  13. $ClonesToDelete = Get-SqlClone -Name {New_Clone}
  14.  
  15. try {
  16. #Update the clone name to make it fail for this example
  17. $ClonesToDelete = Get-SqlClone -Name 'A_New_Unique_Name'
  18. #Attempt to delete the clone
  19. Remove-SqlClone -Clone $ClonesToDelete |
  20. Wait-SqlCloneOperation
  21. }
  22. catch {
  23. log $_.exception.message #send the exception message for logging
  24. exit #terminate the script
  25. }
  26.  

Didn't find what you were looking for?