- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概述
- PowerShell - 环境设置
- PowerShell - Cmdlet
- PowerShell - 文件和文件夹
- PowerShell - 日期和计时器
- PowerShell - 文件 I/O
- PowerShell - 高级 Cmdlet
- PowerShell - 脚本编写
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 有用资源
- PowerShell - 快速指南
- PowerShell - 有用资源
- PowerShell - 讨论
Powershell - Invoke-History Cmdlet
Cmdlet
Invoke-History Cmdlet 用于运行当前会话中已运行过的命令。
在这些示例中,我们将看到 Invoke-History Cmdlet 的实际操作。
示例
在此示例中,我们将展示如何使用 Invoke-History 调用上次运行的命令。在不带参数的情况下调用 Invoke-History。
Invoke-History Measure-Command { Get-EventLog "Windows PowerShell" }
输出
Days : 0 Hours : 0 Minutes : 0 Seconds : 0 Milliseconds : 11 Ticks : 116083 TotalDays : 1.34355324074074E-07 TotalHours : 3.22452777777778E-06 TotalMinutes : 0.000193471666666667 TotalSeconds : 0.0116083 TotalMilliseconds : 11.6083
powershell_advanced_cmdlets.htm
广告