Get-MVSchema

Synopsis

Gets the metaverse schema

Syntax

Get-MVSchema [[-ObjectType] <String>] [<CommonParameters>]

Description

The [Get-MaVSchema cmdlet gets the object classes and attributes that are defined in the metaverse. Optionally a specific object class can be returned, rather than the whole schema.

Parameters

-ObjectType <string>

Gets the schema for the specified metaverse object type only

Required?

false

Position?

1

Default value

Accept pipeline input?

false

Accept wildcard characters?

false

<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about CommonParameters.

Examples

Get the metaverse schema

PS C:\> Get-MVSchema
ObjectTypes                                                                Attributes
-------------                                                              ----------
{[placeholder, placeholder], [sharedMailbox, sharedMailbox], [calendar,... {[accountBlocked, accountBlocked], [accountDisabled, accountDisabled], ...

Gets the schema for a specific metaverse object type

PS C:\> Get-MVSchema -ObjectType user
Name                                                                       Attributes
----                                                                       ----------
user                                                                       {[accountBlocked, accountBlocked], [accountDisabled, accountDisabled], ...

Last updated