Author Topic: Connector LastModified using Audit Log  (Read 13547 times)

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13274
  • Karma: +556/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Connector LastModified using Audit Log
« Reply #15 on: September 22, 2017, 05:59:34 pm »
I have done something like this in vbscript:
- Script that calls the function decodeBase64zippedXML(): https://github.com/GeertBellekens/Enterprise-Architect-VBScript-Library/blob/master/Framework/Tools/Script%20Management/ExportAllShapeScripts.vbs
- Script that defines the function decodeBase64zippedXML() https://github.com/GeertBellekens/Enterprise-Architect-VBScript-Library/blob/master/Framework/Utils/XML.vbs
- BinaryFile and FileSystemFolder scripts are found here: https://github.com/GeertBellekens/Enterprise-Architect-VBScript-Library/tree/master/Framework/Utils

What I do is read the contents and write that in a binary file with extension .zip. Then I unzip that zipt file and then read the unzipped file as a text file.
The contents of that textfile is then base64 decoded and voila, there is the plain text content.

Geert