Skip to content

Latest commit

 

History

History
162 lines (112 loc) · 4.63 KB

File metadata and controls

162 lines (112 loc) · 4.63 KB
external help file keywords locale Module Name ms.date online version schema title
System.Management.Automation.dll-Help.xml
powershell,cmdlet
en-us
Microsoft.PowerShell.Core
06/09/2017
2.0.0
Invoke-History

Invoke-History

SYNOPSIS

Runs commands from the session history.

SYNTAX

Invoke-History [[-Id] <String>] [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

The Invoke-History cmdlet runs commands from the session history. You can pass objects representing the commands from Get-History to Invoke-History, or you can identify commands in the current history by using their ID number. To find the identification number of a command, use the Get-History cmdlet.

EXAMPLES

Example 1: Run the most recent command in the history

Invoke-History

This command runs the last, or most recent, command in the session history. You can abbreviate this command as r, the alias for Invoke-History.

Example 2: Run the command that has a specified ID

Invoke-History -Id 132

This command runs the command in the session history with ID 132. Because the name of the Id parameter is optional, you can abbreviate this command as the following: Invoke-History 132, ihy 132, or r 132.

Example 3: Run the most recent command by using the command text

Invoke-History -ID get-pr

This command runs the most recent Get-Process command in the session history. When you type characters for the Id parameter, Invoke-History runs the first command that it finds that matches the pattern, starting with the most recent commands.

Example 4: Run a sequence of commands from the history

16..24 | ForEach {Invoke-History -Id $_ }

This command runs commands 16 through 24. Because you can list only one ID value, the command uses the ForEach-Object cmdlet to run the Invoke-History command one time for each ID value.

Example 5

Get-History -Id 255 -Count 7 | ForEach {Invoke-History -Id $_.Id}

This command runs the 7 commands in the history that end with command 255 (typically 249 through 255). It uses the Get-History cmdlet to retrieve the commands. Because you can list only one ID value, the command uses the ForEach-Object cmdlet to run the Invoke-History command once for each ID value.

PARAMETERS

-Id

Specifies the ID of a command in the history. You can type the ID number of the command or the first few characters of the command.

If you type characters, Invoke-History matches the most recent commands first. If you omit this parameter, Invoke-History runs the last, or most recent, command. To find the ID number of a command, use the Get-History cmdlet.

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

System.String

You can pipe a history ID to this cmdlet.

OUTPUTS

None

This cmdlet does not generate any output, but output might be generated by the commands that Invoke-History runs.

NOTES

  • The session history is a list of the commands entered during the session together with the ID. The session history represents the order of execution, the status, and the start and end times of the command. As you enter each command, PowerShell adds it to the history so that you can reuse it. For more information about the session history, see about_History.

  • You can also refer to Invoke-History by its built-in aliases, r and ihy. For more information, see about_Aliases.

RELATED LINKS

Add-History

Clear-History

Get-History