NINet.org

Sys Admin

Programs without MSI Product ID

by on Apr.05, 2012, under Coding/Scripting, General, Reporting Services, SCCM SMS, SQL, Sys Admin, Windows

Recently I had an issue where ActiveSetup wasn’t installing some applications when deployed. It turned out that it was due to some of the packaged applications not having a program with the Windows installer information populated. As it was believed that this may not an isolated issues I was tasked with producing a report of all Packages where the information was missing. This is not actually possible via the default reports as none of the views exposed to SCCM actually contain this information. The only way to get this information is to query the SCCM database table “PkgPrograms”, and to do that and have a permenant report SSRS is needed as it can run with the credentials of the user generating it or with an execution account which may have more access.

(continue reading…)

Leave a Comment :, , , , , , , , more...

SCCM Patch Compliance Reports

by on Apr.03, 2012, under Coding/Scripting, Reporting Services, SCCM SMS, SQL, Sys Admin, Windows

I was watching SCCM Guru Episode 9 with Garth Jones, when I saw in his powerpoint presentation two reports for patch compliance that I liked the look of. So I decided to see if I could emulate the reports, I will say here having only seen the final product in his slide my reports will look similar to his, and may even share code, however I have not seen ANY of his code so any similarities here are purely coincidental and not me just copying his code and taking credit.

(continue reading…)

2 Comments :, , , , , , , , more...

Task Sequence and Package Management Reports

by on Mar.02, 2012, under Coding/Scripting, SCCM SMS, SQL, Sys Admin, Windows

There are 3 reports in this group;

The first returns a list of all packages in a Task Sequence and the DPs they are targeted at that are in a “not installed” state. Currently this only detects targeted and not installed, once I figure out the SQL i’ll update this so it includes DPs that it is not targeted at as well.

The second lists all Task Sequences that reference a specific package, the idea here is if you wish to replace a package with a newer version or decommission a package you can get a list of all of the TSes that include it.

The third and final report compares two Task Sequences and returns a list of packages that are in one but not the other along with the ID of the Task Sequence that it is in.

(continue reading…)

Leave a Comment :, , , , , , more...

Software Distribution Reports

by on Feb.29, 2012, under Coding/Scripting, SCCM SMS, SQL, Sys Admin, Windows

I have 85 or so DPs across more than 5 Primary sites and sometimes I see failures in newly created Task Sequences (or even old ones) during an OS deployment due to a package not being available.

  • Distribution status of a specific package on a specific distribution point - This report shows the installation status of a package on the specified distribution point.
  • Distribution points without a specific package - This report shows any Distribution Points a Package is not installed on. N.B. Package MUST be targeted to the site in order to be detected
  • Distribution points without a specific package in a site – This report shows any Distribution Points a Package is not installed on in the specified site. N.B. Package MUST be targeted to the site in order to be detected
  • Distribution status of a specific package in a site - This report shows the installation status of a package on each of its distribution points in the specified site
Leave a Comment :, , , , , more...

Deployment Management Report

by on Feb.28, 2012, under Coding/Scripting, SCCM SMS, SQL, Sys Admin, Windows

Sorry it’s taken so long but here is my 1st post (of many) since my change of Job.

In my new environment machine history isn’t retained upon a machine rebuild, so how do I determine what a machine had before it was rebuilt? Well there is no “easy” answer to this, the company historically used a vbs script to diff the uninstall reg key against a list of standard or core applications. This worked to some extent but was far from perfect and could result in very large lists of applications that were not even installed by SCCM.

(continue reading…)

Leave a Comment :, , , , , , more...

Network Diags

by on Dec.14, 2011, under batch, Coding/Scripting, Sys Admin, Windows

One of my users was complaining of “slow vm performance over the network”, so I requested a few simple diags including a traceroute from his machine to the vm instead I got a traceroute from the VM to the VM. So I decided that clearly I was asking too much from the user and threw the following batch file together (I may rewrite it in powershell for fun later).

(continue reading…)

Leave a Comment :, more...

Clone-VMFromSnapshot

by on Nov.22, 2011, under Coding/Scripting, powercli, powershell, Sys Admin, Virtualization

This is a function that allows you to clone a VM from a specified snapshot. The only way to do this in the UI would be to take a snapshot of the current state, revert to the one you wish to clone, clone, revert to latest snapshot and then delete latest snapshot. As you can see that is time consuming and takes numerous mouse clicks.

I recommend adding this function to your powershell profile so you always have access to it.

As always feel free to comment.

(continue reading…)

Leave a Comment :, , , , , more...

SCCM CDP to WMI version 0.0.0.2 out

by on Nov.01, 2011, under C++, CDP to WMI, Cisco, Coding/Scripting, Projects, SCCM SMS, Windows

After a mass of updates to the code a new version is out, this is still experimental so should only be used in a lab environment.

(continue reading…)

5 Comments :, , , , , , , , , more...

Capture CDP packets and populate WMI for SCCM

by on Oct.25, 2011, under C++, Cisco, Coding/Scripting, SCCM SMS, Sys Admin, Windows

This little gem I wrote will listen to all interfaces on a computer for CDP packets. Once it has looped all the interfaces any packets it has captured are processed and added to WMI.

Using the attached SMS_DEF.mof we can extract that information and place it in SCCM. Anyone who knows what CDP is will see the benefit immediately. For the rest; CDP (Cisco Discovery Protocol), Cisco devices send out CDP packets every 60seconds each packet contains information about the port it was sent from and the sender. In a nutshell if my computer receives a packet then I can tell which switch I am connected to, what port on that switch and a few other bits and bobs about the switch. e.g. In a test environment I have a Cisco switch which connects to a Cisco IP phone which then connects to my computer, when exe runs I get two entries in WMI, one for the phone and one for the Switch.

The use case is that helpdesk  may not know where a user is physically or where they are connected to the network and the user may be experiencing network issues, this would allow a helpdesk tech to locate the switchport  the user is connected to and pass that info to the network team for troubleshooting saving both parties the hassle of tracing cables and also allowing reporting on where a user is plugging in over a period of time.

There is still a bit to be done for this but it does generally work.

(continue reading…)

4 Comments :, , , , , , , , , , , more...

Dell & HP Warranty Info from a CSV file of Tags

by on Sep.20, 2011, under Coding/Scripting, powershell, Servers, Sys Admin, Windows

I have tweaked my powershell script for the SCCM Dell/HP tags due to popular demand so that it can be run on a single machine using a list of service tags as the source and then will output to a CSV file. The source CSV can have any number of columns however it MUST have the following three for the script to work “Name,Vendor,Tag” in its default state. You also need to edit the $infile & $outfile variables as required.

(continue reading…)

15 Comments :, , , , , more...