--- title: "Get-ThinkSystemHost" description: "Returns ThinkSystem storage systems added to the backup infrastructure. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns the list of all ThinkSystem storage systems added to the backup infrastructure" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-thinksystemhost.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Lenovo ThinkSystem Storage Systems > Get-ThinkSystemHost" dateModified: "2026-08-19" --- # Get-ThinkSystemHost ## Short Description Returns ThinkSystem storage systems added to the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-ThinkSystemHost [-Name ] [] ``` ## Detailed Description This cmdlet returns the list of all ThinkSystem storage systems added to the backup infrastructure or narrow down the output by a storage name. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of storage names. The cmdlet will return storage systems with these names.

String[]

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Getting All ThinkSystem Storage Systems This command returns all ThinkSystem storage systems. ``` Get-ThinkSystemHost ``` ::: ::: example ### Example 2. Getting ThinkSystem Storage Systems by Name This command returns a ThinkSystem storage by name. ``` Get-ThinkSystemHost -Name "ThinkSystem Store" ``` :::