Uninstalling XStudio
Uninstalling XStudio on a client computer is quite straight froward.Click start > settings > control panel > add/remove programs
Search for XStudio v*.*, click the Remove button and follow the instructions.


Uninstalling the database
You have two alternative:- Your database server is used by some other products: Then, what you want to do is just deleting XStudio database and keep the database server up and running.
- Your Database server is used only for XStudio: Then, you may want to uninstall the complete database server.
Deleting the Database
C:mysqlbin> mysql.exe u root p mysql Enter password: ******* (<- type rootpwd here) Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 8 to server version: 4.0.18-nt Type 'help;' or 'h' for help. Type 'c' to clear the buffer. Mysql> drop database xstudio_db; Query OK, 1 row affected (0.00 sec) Mysql> exit Bye
Deleting an XStudio dedicated account (opt.)
If you had setup a dedicated account to access this database, use the following instructions to delete it:
C:mysqlbin> mysql.exe u root p mysql
Enter password: ******* (<- type rootpwd here)
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 8 to server version: 4.0.18-nt
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
Mysql> delete from user where user='xstudio';
Query OK, 1 row affected (0.00 sec)
Mysql> flush privileges;
Query OK, 0 row affected (0.00 sec)
Mysql> exit
Bye
Uninstalling the Database Server Software
Stop the mysql service.
Click start > settings > control panel > add/remove programs
Search for mysql, click the Remove button and follow the instructions.


Uninstalling the JRE
If you have no other program using JRE on your server, then you may want to uninstall it as
well (we would advise to keep the JRE on your computer, thought).
Click start > settings > control panel > add/remove programs
Search for Java 2 Runtime Environment, SE v1.*.*, click the Remove button and follow the instructions.



