Get-Item

Gets Sitecore items from the specified drive.

Syntax

Get-Item [-Path] <String[]> [-ID <ID>] [-Language <String[]>] [-Version <String>] [<CommonParameters>]

Get-Item [-Path] <String[]> [-Query <String>] [-Language <String[]>] [-Version <String>] [-AmbiguousPaths] [<CommonParameters>]

Get-Item [-Path] <String[]> [-Uri <String>] [-Language <String[]>] [-Version <String>] [<CommonParameters>]

Get-Item [-Path] <String[]> [-Database <String>] [-Language <String[]>] [-Version <String>]  [<CommonParameters>]

Detailed Description

The Get-Item command unlocks the item.

© 2010-2019 Adam Najmanowicz, Michael West. All rights reserved. Sitecore PowerShell Extensions

Parameters

-Path <String>

The path to the item. If the Database parameter is not provided, the path should include the database. For example, "master:\content\home".

-ID <ID>

The unique identifier for the item.

-Query <String>

The Sitecore query or fast query to retrieve the item.

-Item <Item>

The item to be processed.

-Path <String>

Path to the item to be processed - can work with Language parameter to specify the language other than current session language.

-Id <String>

Id of the item to be processed.

-Database <String>

Database containing the item to be fetched with Id parameter.

-Language <Language[]>

Language(s) to use for filtering items.

-Version <String>

Version number to use for filtering items.

Inputs

The input type is the type of the objects that you can pipe to the cmdlet. Should be the path to an item.

  • System.String

Outputs

The output type is the type of the objects that the cmdlet emits.

  • Sitecore.Data.Items.Item

Notes

Help Author: Adam Najmanowicz, Michael West

Examples

EXAMPLE 1

The following gets the item using the path.

Get-Item -Path "master:\content\home"

EXAMPLE 2

The following gets all items in the master database, located under Content, which are based on the template Sample Item using a Sitecore query.

Get-Item -Path "master:" -Query "/sitecore/content//*[@@templatename='Sample Item']"

EXAMPLE 3

The following gets the item in the master database with the specified ID.

Get-Item -Path "master:" -ID "{110D559F-DEA5-42EA-9C1C-8A5DF7E70EF9}"

EXAMPLE 4

The following gets the item in the master database using the Uri.

Get-Item -Path "master:" -Uri "sitecore://master/{110D559F-DEA5-42EA-9C1C-8A5DF7E70EF9}?lang=en&ver=1"
  • Get-ChildItem

Last updated