1 out of 1 rated this helpful - Rate this topic

Displaying Error Information

This topic discusses the ways in which users can display error information.

When your cmdlet encounters an error, the presentation of the error information will, by default, resemble the following error output.

$ stop-service lanmanworkstation
You do not have sufficient permissions to stop the service Workstation.

However, users can view errors by category by setting the $ErrorView variable to "CategoryView". Category view displays specific information from the error record rather than a free-text description of the error. This view can be useful if you have a long list of errors to scan. In category view, the previous error message is displayed as follows.

$ $ErrorView = "CategoryView"
$ stop-service lanmanworkstation
CloseError: (System.ServiceProcess.ServiceController:ServiceController) [stop-service], ServiceCommandException

For more information about error categories, see Windows PowerShell Error Records.

See Also



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.