-
Notifications
You must be signed in to change notification settings - Fork 4
Add AcmaObject
Ryan Newington edited this page May 26, 2022
·
4 revisions
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
The cmdlet returns a reference to the newly created AcmaPSObject
$newObject = Add-AcmaObject -ObjectClass "person";
$newObject.ToString();