Share via


Test-SpacesConfiguration

Test-SpacesConfiguration

Tests for unhealthy resources associated with a Storage Spaces storage pool.

Sintassi

Parameter Set: ByName
Test-SpacesConfiguration [-StoragePoolFriendlyName] <String> [[-Passthru]] [ <CommonParameters>]

Parameter Set: ByPool
Test-SpacesConfiguration [-StoragePool] <CimInstance> [[-Passthru]] [ <CommonParameters>]

Descrizione dettagliata

The Test-SpacesConfiguration cmdlet tests for unhealthy Storage Spaces resources. It performs the following operations, and returns a True code if Storage Spaces is healthy:

Enumerate storage pools that unhealthy

Enumerate storage spaces that are unhealthy

Enumerate physical disks that are unhealthy

Parametri

-Passthru

Specifies that if the storage pool is unhealthy, the cmdlet should output an object that represents the unhealthy pool.

Alias

nessuno

Obbligatorio?

false

Posizione?

2

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-StoragePool<CimInstance>

Specifies the StoragePool object to test.

Alias

nessuno

Obbligatorio?

true

Posizione?

1

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-StoragePoolFriendlyName<String>

Specifies the friendly name of the storage pool to test.

Alias

nessuno

Obbligatorio?

true

Posizione?

1

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

true

<CommonParameters>

Questo cmdlet supporta i parametri comuni: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer e -OutVariable. Per altre informazioni, vedere   about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Input

Il tipo di input è il tipo degli oggetti che è possibile reindirizzare al cmdlet.

  • Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_StoragePool

    You can pipe a StoragePool object to the StoragePool parameter.

Output

Il tipo di output corrisponde al tipo di oggetti generati dal cmdlet.

  • System.Boolean

    This cmdlet outputs a Boolean object that represents whether Storage Spaces is healthy (True) or unhealthy (False).

  • System.Object

    If you specify the Passthru parameter and the storage pool is unhealthy, this cmdlet outputs an object that represents the unhealthy storage pool.

Esempi

Example 1 – Test a storage pool

This example tests a storage pool.

PS C:\> Test-SpacesConfiguration -StoragePoolFriendlyName Internal

Example 2 – Test a storage pool with verbose output

This example tests a storage pool and specifies for verbose output.

PS C:\> Test-SpacesConfiguration -StoragePoolFriendlyName Internal -Verbose