Community Scripts
Community driven scripts to solve everyday IT needs.
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Patch Dashboard - Part 1 Gaining Visibility

Hi Folks, It's me again. I've been working on this side project for quite some time. Recently, I was inspired by @urvashi this project made a huge breakthrough - I'll delve into that later, but first and foremost, a million thanks go to her! Let’s di...

shawnsong_0-1690877536860.png shawnsong_1-1690877561941.png shawnsong_2-1690877584072.png shawnsong_3-1690877595497.png
shawnsong by Rising Star II
  • 702 Views
  • 1 replies
  • 4 kudos

Python script to get installed versions of software

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