Suppose that you have version 2.0
and
version 4.0
of a toolbox called My Toolbox
installed on your system. After working with version
4.0
, you decide that you no longer need version
2.0
and want to uninstall it.
Get the list of installed add-ons.
addons =
2×4 table
Name Version Enabled Identifier
___________________________ _________ _______ ______________________________________
"My Toolbox_v4.0" "4.0" false "6de8682e-9c3c-407e-bad7-aa103d738d08"
"My Toolbox" "2.0" true "6de8682e-9c3c-407e-bad7-aa103d738d08"
Uninstall My Toolbox
version
2.0
and confirm that it is uninstalled.
addons =
1×4 table
Name Version Enabled Identifier
___________________________ _________ _______ ______________________________________
"My Toolbox_v4.0" "4.0" false "6de8682e-9c3c-407e-bad7-aa103d738d08"
Enable My Toolbox
version
4.0
by specifying the first item in the returned list
of identifiers. Then, confirm that it is enabled.