Jump to content

importing/exporting user customization


michaeloureiro

Recommended Posts

hey all,

 

I´ve been fiddling around with the user customization settings and can´t seem to properly export my settings. Autocad help didn´t answer any of my questions either.

 

Does the cui file export ALL settings like tool palletes?

 

Does anybody know of any tutorials that can help?

Link to comment
Share on other sites

The profile options just imported the user interface settings, but didn´t import my tool palletes.

The import/ export customization window is a bit confusing, can anybody help?

Link to comment
Share on other sites

  • 2 weeks later...

I recently upgraded to a new machine at work and had to reload all my customization. When I load my custom profile, it loaded all my "options" settings and my CUI settings, but make sure your profile (arg) and cui file saved somewhere.

Toolpalette is a completely different beast. You have to create a catalog of your toopalette from content browser if you don't already have a catalog setup. Then import the catalog back to your new machine.

Link to comment
Share on other sites

try this; untested, i'm sitting in the library at school.

 

 
(defun c:UserBackup ( / bu_list )
(vl-mkdir "c:\\user_backup")
(setq bu_list (list "acad.cui" "land.cui" "civil.cui" "acad.pgp"))
(foreach bu bu_list
 (if
  (findfile bu)
   (progn
    (vl-file-copy (findfile bu) (strcat "c:\\user_backup\\" bu))
    (princ (strcat "\n " bu " backed up to "c:\user_backup"))
   );progn
 );if
);foreach
(princ)
);defun

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...