Using 2004, I found that the -PURGE command would permit purging dimstyle "Standard" (so long as it's not the active dimstyle), but the dialog PURGE command would not. In fact, if you toggle on "View items you cannot purge" the TIP window reports "The default dimension style, STANDARD, cannot be purged." Just tested... same story in 2000i and 2002. Not so in R14.01. Is this a bug in the -PURGE command, or is it really okay to purge dimstyle "Standard?" I've checked out drawings after purging "Standard" and they seem to behave alright, but I wonder if they'll ultimately be corrupted. I discovered this by accident after using an adaptation of Marco's function: ;; Step#16 - Purge Dimstyles ;; Credit to Marc'Antonio Alessi (defun @Step#16 ( / Purging) (and (setq Purging T) (while Purging (setq Purging nil) (command "._PURGE" "_Dim" "*" "_YES") (while (> (getvar "CMDACTIVE") 0) (setq Purging (not (command "_YES"))) ) 1 ) ) ) If "Standard" should really NOT be purged, the apparent solution is to replace "*" with "~STANDARD" which seems to ignore case.