Here is a Python script that I put together to gather the installed versions of specified applications for Windows, Linux, and MacOS.#!/usr/bin/env python3
import sqlite3
import requests
import json
import csv
import pathlib
import time
from datet...