To uninstall a macro, use the following sis-console command, Ant task, or related MBean operation.
Console command
uninstallmacro
Command  | 
uninstallmacro <ra-entity> <macro-id>
    Uninstall a macro component.
 | 
|---|---|
Example  | 
To uninstall the macro component with identifier  $ ./sis-console uninstallmacro sis name=Example,vendor=ABC,version=1.0 Uninstalled macro MacroID[name=Example,vendor=ABC,version=1.0]  | 
Ant task
uninstallmacro
Task  | 
<uninstallmacro>
    <macro name="..." vendor="..." version="..."/>
</uninstallmacro>
 | 
|---|---|
Example  | 
<sis-management>
  <uninstallmacro>
    <macro name="Example" vendor="ABC" version="1.0"/>
  </uninstallmacro>
</sis-management>
 | 
MBean operation
MBean  | 
|---|
uninstall
Operation  | 
public void uninstall(MacroID id)
    throws NullPointerException, UnrecognizedComponentException,
           DependencyException, ManagementException;
 | 
|---|
