Skip to content

Instantly share code, notes, and snippets.

@cdhunt
Created April 30, 2015 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdhunt/e224e943323bfa150262 to your computer and use it in GitHub Desktop.
Save cdhunt/e224e943323bfa150262 to your computer and use it in GitHub Desktop.
function Register-HistoryInfoCustomType
{
Update-TypeData -TypeName Microsoft.PowerShell.Commands.HistoryInfo `
-MemberType ScriptProperty `
-MemberName TotalExecutionTime `
-value { $this.EndExecutionTime - $this.StartExecutionTime} `
-Force
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment