We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Adds a new instance of an object class to the ACMA database
Add-AcmaObject -ObjectClass <string>
The name of the object class to create an instance of
Type: String Required: Yes Position: 0 Accept pipeline input: Yes
The cmdlet returns a reference to the newly created AcmaPSObject
$newObject = Add-AcmaObject -ObjectClass "person"
$person = Add-AcmaObject -ObjectClass "person" $person.firstName = "John" $person.lastName = "Smith" Save-AcmaObject $person