July 5th, 2014

PowerTip: Examine the Most Recent PowerShell Error

Doctor Scripto
Scripter

Summary: Learn how to examine the most recent error in Windows PowerShell.

Hey, Scripting Guy! Question My Windows PowerShell command failed with an error. How can I look at the error record?

Hey, Scripting Guy! Answer Use the $error automatic variable to it displays the last error.
          You can see more details by piping it to the Format-List cmdlet and using –Force:

$error | Format-List * -Force

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.