Jump to content

Possible to Identify AutoCAD Licence No. Which Created a .dwg?


Recommended Posts

Posted

Hey,

 

I would just like to know if it is possible to establish the creator of a specific .dwg file - specifically the licence number of the AutoCad which created it.

 

 

Thanks,

 

Killian

Posted

Why? :unsure:

 

What would you possibly want to do with such information?

Posted

Basically I need to find out if a set of drawings have been produced using our office computers/AutoCAD or if they have been produced elsewhere.

Posted

I doubt you could do that.

 

You suspect someone loaded company-purchased software on their home computer without prior permission?

Posted

Could you not just check the file owner property in Windows Explorer?

 

If produced on another (non-company) computer, the user's login name will not be the same (although someone could technically make it the same, it is just unlikely).

Posted

How does one check the file owner property in Windows Explorer?

Posted
Could you not just check the file owner property in Windows Explorer?

 

If produced on another (non-company) computer, the user's login name will not be the same (although someone could technically make it the same, it is just unlikely).

 

 

In Properties>Security>Advanced>Owner? The owner automatically changes if you copy the file to another computer, it dos not seem to retain information on the original owner/creator. Therefore the files in question would cite the company username as the owner even if they were produced elsewhere and later copied across.

Posted

For fun (I'm bored):

 

(defun c:LSB () (c:LastSavedBy))
(defun c:LastSavedBy ()
 (princ "\rLAST SAVED BY ")
 (vl-load-com)
 ((lambda (acDoc)
    (prompt (strcat "\n** This drawing was last saved by: \t" 
                    (strcase (vla-get-lastsavedby (vla-get-summaryinfo acDoc)))
                    " ** ")))
   (vla-get-activedocument (vlax-get-acad-object)))
 (princ))

For more detailed information, we could easily utilize the FileScriptingObject Object too :wink: :geek:

Posted
For fun (I'm bored):

 

removed

For more detailed information, we could easily utilize the FileScriptingObject Object too :wink: :geek:

but the OP has LT :(
Posted
The owner automatically changes if you copy the file to another computer, it dos not seem to retain information on the original owner/creator. Therefore the files in question would cite the company username as the owner even if they were produced elsewhere and later copied across.

 

First, if you're users have the ability to connect from their work computer directly to their home computer (on the same network), you've got bigger issues than *where* are they doing their work.

 

Using Right Click -> Statistics Tab (Windows 7 64-Bit)

 

I've just copied a file from another user's computer to an external drive, checked the properties and they were the 'last saved by' (from my computer). Then copied the file from the external drive to my desktop, and checked again, and the 'last saved by' information is identical.

Posted
but the OP has LT :(

 

I always forget to look for LT :oops:; hopefully it will help someone else.

Posted
Hey,

 

I would just like to know if it is possible to establish the creator of a specific .dwg file - specifically the licence number of the AutoCad which created it.

 

 

Thanks,

 

Killian

 

If you are looking for an ongoing solution (not just checking already existing files) my CadTempo software should do what you are looking for. It keeps a continuous record of who worked on what drawing and for how long, listing the person that first created and last accessed the file as well as all users in between. Works with LT also.

 

If a file is copied or moved within Windows Explorer and certain settings are configured the data follows the drawing.

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...