-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGet-ErrorInfo.ps1
69 lines (63 loc) · 3.26 KB
/
Get-ErrorInfo.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
function Get-ErrorInfo {
<#
.SYNOPSIS
Returns errors in a concise object
.DESCRIPTION
Returns errors in a concise object. Useful when trying to write a catch statement to a particular exception.
.PARAMETER Count
Number of error entries you would like. Valid range 1-100. If you specify a number greater than $Error.Count is sets Count to $Error.Count
.EXAMPLE
Get-ErrorInfo -Count 20 -Verbose
VERBOSE: Starting [Get-ErrorInfo]
VERBOSE: Setting Count to [6]
VERBOSE: Ending [Get-ErrorInfo]
Index ExceptionType ErrorText
----- ------------- ---------
0 System.Management.Automation.ParameterBindingValidationException Cannot validate argument on parameter 'Count'. The 0 argument is less than the m...
1 System.Management.Automation.ParameterBindingValidationException Cannot validate argument on parameter 'Count'. The 200 argument is greater than ...
2 System.ArgumentException Illegal characters in path.
3 System.ArgumentException Illegal characters in path.
4 System.ArgumentException Illegal characters in path.
5 System.Management.Automation.ItemNotFoundException Cannot find path 'C:\Git\PoshFunctions\Pester\dne' because it does not exist.
.EXAMPLE
Get-ErrorInfo -Count 20 -Verbose
Index ExceptionType ErrorText
----- ------------- ---------
0 System.Management.Automation.ParameterBindingValidationException Cannot validate argument on parameter 'Count'. The 0 argument is less than the m...
1 System.Management.Automation.ParameterBindingValidationException Cannot validate argument on parameter 'Count'. The 200 argument is greater than ...
2 System.ArgumentException Illegal characters in path.
3 System.ArgumentException Illegal characters in path.
4 System.ArgumentException Illegal characters in path.
5 System.Management.Automation.ItemNotFoundException Cannot find path 'C:\Git\PoshFunctions\Pester\dne' because it does not exist.
#>
[CmdletBinding()]
[OutputType([psobject])]
param(
[Parameter(Position = 0)]
[ValidateRange(1, 100)]
[int] $Count = $Error.Count
)
begin {
Write-Verbose -Message "Starting [$($MyInvocation.Mycommand)]"
if ($Count -gt $Error.Count) {
$Count = $Error.Count
Write-Verbose -Message "Setting Count to [$($Error.Count)]"
}
}
process {
$tmp = foreach ($curError in $Error[0..$($Count - 1)]) {
$curError
}
$result = for ($Index = 0; $Index -lt $Count; $Index++) {
New-Object psobject -Property ([ordered] @{
Index = $Index
ExceptionType = ($tmp[$Index].Exception.gettype()).Fullname
ErrorText = $tmp[$Index].ToString()
})
}
$result
}
end {
Write-Verbose -Message "Ending [$($MyInvocation.Mycommand)]"
}
}