Get-SCVMHostCluster
Ottiene un oggetto cluster host.
Sintassi
Get-SCVMHostCluster
[-VMMServer <ServerConnection>]
[-VMHostGroup <HostGroup>]
[[-Name] <String>]
[-ID <Guid>]
[<CommonParameters>]
Get-SCVMHostCluster
-VMHostGroup <HostGroup>
[[-Name] <String>]
[<CommonParameters>]
Get-SCVMHostCluster
[-VMHostGroup <HostGroup>]
[-Name] <String>
[<CommonParameters>]
Get-SCVMHostCluster
-ID <Guid>
[<CommonParameters>]
Get-SCVMHostCluster
-HyperConvergedStorageArray <StorageArray>
[<CommonParameters>]
Descrizione
Il cmdlet Get-SCVMHostCluster ottiene uno o più oggetti cluster host dal database di Virtual Machine Manager (VMM).
Esempio
Esempio 1: Ottenere tutti i cluster host gestiti da un server VMM
PS C:\> Get-SCVMHostCluster -VMMServer "VMMServer01.Contoso.com"
Questo comando ottiene tutti gli oggetti cluster host in VMMServer01 e visualizza informazioni su ogni cluster host all'utente.
Esempio 2: Ottenere tutti i cluster host gestiti da un server VMM e visualizzare il nome del cluster host e la piattaforma di virtualizzazione per ogni cluster
PS C:\> Get-SCVMHostCluster -VMMServer "VMMServer01.Contoso.com" | Select-Object -Property Name, VirtualizationPlatform
Questo comando ottiene tutti gli oggetti cluster host in VMMServer01 e passa ogni oggetto al cmdlet Select-Object, che visualizza il nome e la piattaforma di virtualizzazione per ogni cluster host.
Esempio 3: Ottenere un cluster host in base al nome
PS C:\> Get-SCVMHostCluster -Name "VMHostCluster03.Contoso.com"
Questo comando ottiene l'oggetto cluster host denominato VMHostCluster03 e visualizza informazioni sul cluster.
Esempio 4: Visualizzare il tipo di oggetto, i metodi e le proprietà per un cluster host gestito da VMM
PS C:\> Get-SCVMHostCluster -VMMServer "VMMServer01.Contoso.com" | Get-Member
Questo comando ottiene gli oggetti cluster host in VMMServer01 e quindi passa un oggetto cluster host al cmdlet Get-Member , che visualizza il tipo .NET per un oggetto cluster host e l'elenco di eventi, metodi e proprietà associati a un oggetto cluster host.
Parametri
-HyperConvergedStorageArray
Type: | StorageArray |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ID
Specifica l'identificatore numerico come identificatore univoco globale o GUID per un oggetto specifico.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Specifica il nome di un oggetto di VMM.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMHostGroup
Specifica un oggetto gruppo host di macchina virtuale.
Type: | HostGroup |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMMServer
Specifica un oggetto server Virtual Machine Manager.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Output
VMHostCluster
Questo cmdlet restituisce un oggetto VMHostCluster .