topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 11:49 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Application Database Software  (Read 3291 times)

jaf

  • Participant
  • Joined in 2011
  • *
  • default avatar
  • Posts: 5
    • View Profile
    • Donate to Member
Application Database Software
« on: January 25, 2014, 12:02 PM »
I've been thinking about creating a database of my installed software.  I was wondering if there is a software that would scan a computer and create a list of installed application?  Maybe a FARR plugin?  It would be nice if it could create a delimited list (text file) because it would make it easy to import into a database.

I realize it would require a lot of editing since I would want to add serial numbers, notes, etc. but getting that list built via a scan would be a great start.

MilesAhead

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 7,736
    • View Profile
    • Donate to Member
Re: Application Database Software
« Reply #1 on: January 25, 2014, 03:18 PM »
LookInMyPC is free and creates a report of installed programs.  Likewise Belarc Advisor.  The reports are in html.  I don't know if there's a switch for plane text in Belarc.  MyUninstaller provides a list of programs that have an uninstaller listed in the Registry.  It can output an html report or you can copy paste from the display.

Shades

  • Member
  • Joined in 2006
  • **
  • Posts: 2,922
    • View Profile
    • Donate to Member
Re: Application Database Software
« Reply #2 on: January 25, 2014, 04:33 PM »
Powershell scripts already exist for this. Any version of Windows more modern than Windows XP comes standard with Powershell. And you can download it freely from Microsoft for XP as well.

http://gallery.techn...f-Installed-c47393ed

With the link above you should be able to download a script that retrieves this list for you, storing this list into a .csv file. Most modern databases can import the content from this kind of files either directly or with a little extra work.

Play a bit with the script, get it to retrieve all the information you are still missing.


jaf

  • Participant
  • Joined in 2011
  • *
  • default avatar
  • Posts: 5
    • View Profile
    • Donate to Member
Re: Application Database Software
« Reply #3 on: January 25, 2014, 08:14 PM »
Thanks!