See the top rated post in this thread. Click here

Results 1 to 4 of 4

Thread: Large company with multiple Autocad products

  1. #1
    All AUGI, all the time
    Join Date
    2009-11
    Location
    Raleigh, NC
    Posts
    921
    Login to Give a bone
    0

    Default Large company with multiple Autocad products

    Any best practice IT resolutions for multiple users with different versions of Autocad and Civil 3D to keep Civil 3D files from being opened by regular Autocad when opening from Windows File Explorer?

    I introduced this topic once before and I could sense the frustration from other experiences by not opening with the specific product.

    Herding cats is not going to happen so I am just wanting to hear ideas.

  2. #2
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,300
    Login to Give a bone
    1

    Default Re: Large company with multiple Autocad products

    Reminds me of the saying, "Doctor, my thumb hurts when I hit it with this hammer. What do I do?"

    You can force the Windows action to always open a dwg in either C3D or acad, but Windows can't tell if the dwg contains C3D objects. Nor does the dwg launcher. It just opens using that last used profile. Those are the only options I know of. You could install the C3D object enabler on everyone's acad, so that at least they could view the objects if they opened in plain acad.
    C:> ED WORKING....

  3. #3
    All AUGI, all the time
    Join Date
    2009-11
    Location
    Raleigh, NC
    Posts
    921
    Login to Give a bone
    0

    Default Re: Large company with multiple Autocad products

    🤣 Funny and true

  4. #4
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,707
    Login to Give a bone
    1

    Default Re: Large company with multiple Autocad products

    To prevent users from opening Civil 3D drawings in AutoCAD, consider only installing Civil 3D and do not install AutoCAD.

    We also have multiple versions of Civil 3D installed here, so to instead help users leverage File Explorer, I simply set the registry via Acad.lsp to open .DWG in that version & that profile on launch... so user launches the desired version of Civil 3D, then they can double click + open all they want. If they open multiple versions, last version opened is used.

    Similarly I disable .DWG right click + print from File Explorer shell menu, so users instead use CAD itself or a custom Windows shell menu I've added (which batch plots DWG to PDF using Core Console in parallel).

    You don't need to herd cats... just spray water in their face (figuratively) by making it harder for them to do what they're not supposed to do... but more importantly, make it easier for them to do the right thing.

    When something is cumbersome, remove their roadblocks. Make their daily work easier (automate where possible) and they'll not only choose to do things the right way for themselves, but they'll be happier and more productive too. That means more time for family, friends, or literally anything but work.

    HTH

    Code:
    ;;;--------------------------------------------------------------------;
    ;;; Set DWG double click open version
    (if
      (setq vrsn (substr (findfile "acad.exe") 35 4))
       (progn
         (vl-registry-write
           "HKEY_CURRENT_USER\\Software\\Autodesk\\DwgCommon\\shellex\\apps\\{F29F85E0-4FF9-1068-AB91-08002B27B3D9}:AutoCAD\\"
           "OpenLaunch"
           (strcat
    	 "\"C:\\Program Files\\Autodesk\\AutoCAD " vrsn
    	 "\\acad.exe\" /ld \"C:\\Program Files\\Autodesk\\AutoCAD " vrsn
    	 "\\AecBase.dbx\" /p \"" (getvar 'cprofile) "\" /product \"C3D\" /language \"en-US\" \"%1\""
    	 )
         )
         (setq vrsn nil)
    ;;;--------------------------------------------------------------------;
    ;;; Disable DWG right click print 
         (vl-registry-write
           "HKEY_CURRENT_USER\\Software\\Autodesk\\DwgCommon\\shellex\\apps\\{F29F85E0-4FF9-1068-AB91-08002B27B3D9}:AutoCAD\\"
           "PrintDdeExec"
           ""
         )
         (vl-registry-write
           "HKEY_CURRENT_USER\\Software\\Autodesk\\DwgCommon\\shellex\\apps\\{F29F85E0-4FF9-1068-AB91-08002B27B3D9}:AutoCAD\\"
           "PrintLaunch"
           ""
         )
       )
    )
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

Similar Threads

  1. Replies: 0
    Last Post: 2007-03-04, 08:57 AM
  2. Replies: 2
    Last Post: 2005-07-27, 04:33 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •