PowerCLI Reference

Get-VIAccount

Synopsis

This cmdlet retrieves the accounts from the ESX/ESXi or vCenter Server.

Syntax

Get-VIAccount [-Group] [-User] [[-Name] <String[]>] [-Server <VIServer[]>] [<CommonParameters>]

Get-VIAccount [-Group] [-User] [[-Id] <String[]>] [-Domain <String>] [-Server <VIServer[]>] [<CommonParameters>]

Related Commands

Online version
New-VMHostAccount
Set-VMHostAccount
Remove-VMHostAccount

Detailed Description

This cmdlet retrieves the accounts from the ESX/ESXi or vCenter Server. The Group and User switch parameters let you retrieve group and user accounts. By default, the cmdlet lists only user accounts. If the Domain parameter is specified, the cmdlet retrieves only the accounts on the specified AD domain. Otherwise, only local accounts are listed.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
IdString[]Specifies the IDs of the accounts you want to retrieve.

Note: When a list of values is specified for the Id parameter, the returned objects would have an ID that matches exactly one of the string values in that list.
falsefalse
NameString[]Specifies the names of the accounts you want to retrieve.falsefalse
DomainStringSpecifies AD domains to search for accounts.falsefalse
GroupSwitchParameterSpecifies that you want to retrieve only group accounts.falsefalse
ServerVIServer[]Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.falsetrue (ByValue)
UserSwitchParameterSpecifies that you want to retrieve only user accounts.falsefalse

Return Type

Zero or more VIAccount objects

Notes

Examples

-------------- Example 1 --------------

Get-VIAccount -Id Administrator

Retrieve accounts by Id.

-------------- Example 2 --------------

Get-VIAccount -Group

Retrieve all group accounts.

-------------- Example 3 --------------

Get-VIAccount -Id Administrator -Domain "MSDomain"

Get all VIAccounts for specified ID and Domain.

-------------- Example 4 --------------

Get-VIAccount -Domain "MSDomain"

Retrieve all accounts for the specified domain.


Copyright © VMware, Inc. All rights reserved.