User`s guide

64
The following script uninstalls the USB license drivers and saves them in a
folder named AladdinBackup in the home directory. As detailed previously,
to reinstall the drivers, you must have an installer.
To uninstall the license key drivers:
1. Open a Terminal window.
2. Run the following script.
dpid=$(ps axh | grep aksusbd | sed 's/ *\(.*\)/\1/' | cut -f1 -d\ | head -1)
if [ -n "$dpid" ]; then
sudo kill $dpid
fi
mkdir AladdinBackup
sudo mv /usr/libexec/aksusbd /System/Library/StartupItems/Aladdin/
AladdinBackup