Out-Minidump now provides descriptive output

Out-Minidump now outputs a FileInfo object (i.e. the same output as
Get-ChildItem) upon successfully creating a dump file.
This commit is contained in:
Matt Graeber 2013-08-17 16:39:20 -04:00
parent ba33613413
commit d67e71bf2d
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@
.OUTPUTS .OUTPUTS
None System.IO.FileInfo
.LINK .LINK
@ -122,7 +122,7 @@
} }
else else
{ {
Write-Verbose "Success! Minidump written to $ProcessDumpPath." Get-ChildItem $ProcessDumpPath
} }
} }