Comment on page
New-MVObject (Project-MVObject)
Project a connector space object into the metaverse as a new object
New-MVObject [-MVObjectType] <String> [-CSObject] <CSObject> [<CommonParameters>]
The New-MVObject cmdlet (or its alias Project-CSObject) allows you to project a connector space object into the metaverse as a new metaverse object of a specified type
The type of metaverse object to create
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The connector space object to project
Required? | true |
Position? | 2 |
Default value | |
Accept pipeline input? | true |
Accept wildcard characters? | false |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about CommonParameters.
PS C:\> $cs = Get-CSObject -RDN "cn=John Smith" -MA "ADMA"
PS C:\> New-MVObject -CSObject $cs -MVObjectType 'user'
PS C:\> $cs = Get-CSObject -RDN "cn=John Smith" -MA "ADMA"
PS C:\> Project-CSObject -CSObject $cs -MVObjectType 'user'
Last modified 1yr ago