The only other way to massively remove hosts is to access the database directly and remove them from there. It’s easy if you want to just remove all of them:
[CODE]TRUNCATE TABLE hosts;[/CODE]
Or if you have some known host value that you can leverage; such as all hosts currently assigned imageID 3:
[CODE]DELETE FROM hosts WHERE hostImage = 3;[/CODE]
If you’re not used to messing around in MySQL then you might want to consider installing phpmyadmin, which will give you a web interface for managing the database.