3

I'm looking for a program that can remotely show me (From a server counsel) all the patch info and programs of the computers on my network. And whether it shows it to me via GUI or through a report, either would be helpful for me to see that all machines are running the same java patches, ect.

I tried googling around but couldn't find much.

Thanks!

Matt
  • 31
  • 1

5 Answers5

4

SCCM can do this. If you want comprehensive reports and don't want SCCM you'll have to use some other form of asset management like a SpiceWorks product, Microsoft Asset Management, etc.

If you just want Microsoft patches, you can use PowerShell's get-hotfix cmdlet.

MDMarra
  • 100,734
  • 32
  • 197
  • 329
  • Yeah, more or less, all I care about is Java patches at the moment, I've heard mention of spiceworks on other posts on this forum, I'll check it out. I'm looking for a program, that I can be like, "Oh hey, that machine is out of date/wrong version/ect" and go install the correct one. – Matt Jan 18 '13 at 19:39
  • @Matt It sounds like you want a configuration management application. Look at SCCM, it's the canonical answer to config management on Windows. It will, not only report on versions, but remediate systems that need it automatically based on policies that you define. – MDMarra Jan 18 '13 at 19:40
  • It'd be good to mention that SCCM isn't freely available. More information at: http://www.microsoft.com/en-us/server-cloud/system-center/configuration-manager-2012-buy.aspx – wullxz Jan 18 '13 at 20:13
  • @wullxz Sorry, I must have missed where the OP was looking specifically for free software. – MDMarra Jan 18 '13 at 20:16
  • 1
    He didn't. But since SCCM isn't available for just a few bucks, I find it worth mentioning. – wullxz Jan 18 '13 at 20:30
3

You can query installed software and their version using Powershell (which isn't preinstalled on server 2008 by default, but is very handy) or the wmic command (available on all windows machines).

Example for Powershell:

Get-WmiObject Win32_Product -Computername "computer1", "computer2", "computer3" -filter "name like 'java%'" | select __server, name, vendor, version

Example for wmic (run wmic in cmd.exe):

wmic /NODE: "computer1", "computer2", "computer3" product where "name like 'java%'" get name, vendor, version

(Sadly, I haven't found a solution yet, to display the target name using wmic like I did in Powershell with select __server..., but I will edit this as soon as I have a solution.)

I recommend using Powershell for this because you're more flexible with Powershell and you can, for example, use an xml file or a simple text file as source for target names. I can provide you with samples for that if you're interested (I have to write them first ;)).
Of course you can schedule a powershell script and let it, for example, write its results to a file or send an email.

wullxz
  • 1,073
  • 2
  • 16
  • 29
0

If you are looking for open-source solutions, a really good combination is OCS-NG and GLPI.

OCS-NG is a client/server application that uses agents, installable on Windows and Linux, to collect information about the hardware and software installed on the system, including Microsoft patches, Java patches, product keys, and more. The agent then forwards the data to a central server to be viewed. OCS also had the opportunity to distribute packages of software back out to the clients, allowing you to automatically apply a new Java update on each client machine without visiting it.

GLPI is another web application which is an asset management/tracking tool with an integrated helpdesk feature. It also has a gateway interface with OCS-NG to import the data collected by the agents. This will automatically populate the appropriate fields and provide a much nicer interface for managing this data. GLPI also allows you to create connections between devices; I used it to model our network infrastructure here, so that I know the entire chain of connections from the PC to the switch:

PC -> Wall Jack -> Patch Panel port -> Switch Port

Rob Gibson
  • 261
  • 1
  • 7
0

I like to use Spiceworks, Ninite, and WSUS together to manage things.

Spiceworks can give you the information you want while Ninite and WSUS can manage the updates. These are really nice when your budget is minimal. When you've got the budget for it the System Center Suite from Microsoft is what I prefer.

ErnieTheGeek
  • 2,037
  • 16
  • 22
0

Microsoft Intune is easy and free to try:

http://www.microsoft.com/en-us/windows/windowsintune/try.aspx

Greg Askew
  • 35,880
  • 5
  • 54
  • 82