Invoke the (provider-specific) default action on an item (like a START command or double click.) This will force the default action to be run on the item. For example a .PDF file will open in whatever program is associated with PDF files.
Syntax Invoke-Item { [-path] string[] | [-literalPath] string[] } [-include string[]] [-exclude string[]] [-filter string] [-whatIf] [-confirm] [-UseTransaction] [-credential PSCredential] [CommonParameters] Key -path string The path(s) to the items. Wildcards are permitted. Use a dot (.) to specify the current location. Use the wildcard (*) to specify all items in the current location. -literalPath string Like Path above, only the value is used exactly as typed. No characters are interpreted as wildcards. If the path includes any escape characters then enclose the path in single quotation marks. -include string Include only the specified items from the Path. e.g. "May*" this only works when the path includes a wildcard character. -exclude string Omit the specified items from the Path e.g. "*SS64*" this only works when the path includes a wildcard character. -filter string A filter in the provider's format or language. The exact syntax of the filter (wildcard support etc) depends on the provider. Filters are more efficient than -include/-exclude, because the provider applies the filter when retrieving the objects, rather than having PowerShell filter the objects after they are retrieved. -whatIf Describe what would happen if you executed the command without actually executing the command. -confirm Prompt for confirmation before executing the command. -credential PSCredential Use a credential to validate access to the file. Credential represents a user-name, such as "User01" or "Domain01\User01", or a PSCredential object, such as the one retrieved by using the Get-Credential cmdlet. If you type a user name, you will be prompted for a password. This parameter is not supported by any PowerShell core cmdlets or providers. -UseTransaction Include the command in the active transaction. This parameter is valid only when a transaction is in progress. For more, see help about_Transactions. CommonParameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer -OutVariable.
Standard Aliases for Invoke-Item: ii
Examples
Opens a file in Microsoft Word:
PS C:\> invoke-item C:\finances.doc
Open multiple Excel spreadsheets at once by using a wildcard:
PS C:\> invoke-item "F:\My Documents\*.xls"
“Do not run; scorn running with thy heels” ~ Shakespeare, The Merchant of Venice
Related PowerShell Cmdlets:
Invoke-Command - Run commands on local and remote computers.
Invoke-Expression - Run a PowerShell expression.
Invoke-History - Invoke a previously executed Cmdlet.
clear-item - Remove content from a variable or an alias.
move-item - Move an item from one location to another.
new-item - Create a new item in a namespace.
remove-item - Remove an item.
rename-item - Change the name of an existing item.
set-item - Set the value of a provider pathname.
. (source) - Run a command script in the current shell (persist variables and functions.)
& (call) - Run a command script.
--% - Stop parsing input.
Equivalent Windows CMD command: START - Execute a command.
Equivalent bash command: exec - Execute a command.