Make AutoCAD Read-Only

Discussion in 'AutoCAD' started by pdavis, Mar 1, 2005.

  1. pdavis

    pdavis Guest

    I work in an engineering firm that has a mix of the various flavors of AutoCAD. One of the problems we are having, is some of the engineers making changes to drawings. They are trying to save the Engineering Techs and Cad Techs some time, but most of the it is harmful. Like Bindging, then exploding xrefs, then making changes to the drawings, exploding dimensions and editing values, etc.

    I need to make it so that they can't save any changes they make to a drawing.

    We don't want to use windows to make certain directories read-only to certain users, we just would somehow like to limit their ability to save in AutoCAD.

    Any comments or suggestions would be appreciated.

    Thanks,

    Pat Davis
     
    pdavis, Mar 1, 2005
    #1
  2. I'd vote for: "Can't be done in AC."
     
    Matti Pitkänen, Mar 1, 2005
    #2
  3. pdavis

    Murph Guest

    But it can be done.
    Get the loginname and if it's Joe Engineer disable the save command or run
    an reactor to undo all the edits.

    Murph
     
    Murph, Mar 1, 2005
    #3
  4. pdavis

    Matt W Guest

    uninstall acad from their computers!
     
    Matt W, Mar 1, 2005
    #4
  5. There's no way to limit the ability to save in AutoCAD.

    If this is a problem within your company, you need to
    have its management set forth a policy, with some
    teeth in it.
     
    Tony Tanzillo, Mar 1, 2005
    #5
  6. pdavis

    Warren Trost Guest

    Don't give network rights to write to that directory.


    AutoCAD. One of the problems we are having, is some of the engineers making
    changes to drawings. They are trying to save the Engineering Techs and Cad
    Techs some time, but most of the it is harmful. Like Bindging, then
    exploding xrefs, then making changes to the drawings, exploding dimensions
    and editing values, etc.
    certain users, we just would somehow like to limit their ability to save in
    AutoCAD.
     
    Warren Trost, Mar 1, 2005
    #6
  7. pdavis

    R.K. McSwain Guest


    Ditto Tony's and Warren's comments.
     
    R.K. McSwain, Mar 1, 2005
    #7
  8. pdavis

    BillZ Guest

    Yeah,
    Give 'em an AutoCAD VIEWER.

    Bill
     
    BillZ, Mar 1, 2005
    #8
  9. I second that. Joe Engineer just needs bentley view, autocad is too
    expensive for someone who I am afraid of breaking something. ;)
     
    melanie stone, Mar 1, 2005
    #9
  10. pdavis

    Walt Engle Guest

    There is another solution, but it can be deadly: password protection. Watch out on this.
     
    Walt Engle, Mar 1, 2005
    #10
  11. pdavis

    ECCAD Guest

    Place this in their acaddoc.lsp....

    (command "undefine" "save")
    (command "undefine" "saveas")
    (defun c:save () (Prompt "\nSave not Allowed\n"))
    (defun c:saveas () (Prompt "\nSaveas not Allowed\n"))
    (princ)

    That should stump them for awhile.

    :)
    Bob
     
    ECCAD, Mar 1, 2005
    #11
  12. pdavis

    Walt Engle Guest

    That's very, very good and to increase it's usefulness, make it an
    acad.lsp and protect it.
     
    Walt Engle, Mar 1, 2005
    #12
  13. pdavis

    R.K. McSwain Guest


    Command: .save
    Command: .saveas
     
    R.K. McSwain, Mar 2, 2005
    #13
  14. pdavis

    R.K. McSwain Guest

    What is Bentley View?
     
    R.K. McSwain, Mar 2, 2005
    #14
  15. pdavis

    Walt Engle Guest

    Tried yours but didn't work so worked up one that does it:

    (command "undefine" "_save")
    (command "undefine" "_qsave")
    (command "undefine" "_saveas")
    (defun c:save () (Prompt "\nSave not Allowed\n"))
    (defun c:qsave () (Prompt "\nqsave not Allowed\n"))
    (defun c:saveas () (Prompt "\nSaveas not Allowed\n"))
     
    Walt Engle, Mar 2, 2005
    #15
  16. it is a free drawing viewer... measure, print, turn on/off layers... no
    markup capabilities, no save capabilities... my favorite cya procedure...
    (and, our copies of autocad are kept in my office under lock and key)
     
    melanie stone, Mar 2, 2005
    #16
  17. pdavis

    pdavis Guest

    Thanks everyone for the suggestions. It's a touchy subject in our office, and I hope that making them "think" their version of AutoCAD isn't working properly will fool them for awhile. Hopefully long enough until we can come up with a permanent solution.

    Thanks again.
     
    pdavis, Mar 2, 2005
    #17
  18. pdavis

    Warren Trost Guest

    (defun c:save () Prompt "Formatting C:")
     
    Warren Trost, Mar 2, 2005
    #18
  19. pdavis

    Tom Smith Guest

    (defun c:save () Prompt "Formatting C:")

    LOL

    (defun c:save ()
    (while t
    (alert "Press Okay to continue")))
     
    Tom Smith, Mar 2, 2005
    #19
  20. pdavis

    R.K. McSwain Guest


    Does Autodesk offer a FREE .dwg viewer that is similar to this "Bentley
    View"?
     
    R.K. McSwain, Mar 2, 2005
    #20
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.