My Licenses export?

Is there a way to export all the license information from the “My Licenses” account page?

A .csv with System name, License Type, ID, Updates date, etc. would be perfect, as the web UI is a little tedious for managing many licenses.

You can do it in a script DAT.
See attached tox, or copy script below and feed into Convert DAT to get csv.
Cheers.
keyTable.tox (934 Bytes)

def onCook(scriptOp):
	scriptOp.clear()
	
	attribs =['key', 'isEnabled', 'status', 'statusMessage', 'systemCode', 'type', 'updateExpiryDate', 'version']
	
	scriptOp.appendRow(attribs)
	
	for l in licences:
		x = [getattr(l, k) for k in attribs]		
		scriptOp.appendRow(x)

	return

Hey Rob, thanks for the response. This only gets the licenses on that particular machine, correct? Is there a way to get the information about all the licenses on the associated Derivative account?

To clarify, I’m trying to get license information for a given Derivative account. So for each license, which system it’s installed on (if any); license type; updates date, etc. Basically everything you see in the “My Account/My Licenses” web page.

Oh sorry about that. I misread your initial question.
Offhand I don’t believe that information is presentable in another format, but I’ll enquire.
Cheers.

So if you contact support@derivative.ca we can generate the info for you in this case, if that’s useful.
Cheers